This commit is contained in:
2025-08-28 23:17:34 +02:00
parent fe3886fbdf
commit 20a49c3f58
31 changed files with 440 additions and 117 deletions

View File

@@ -1,14 +1,25 @@
-- debug.lua
-- debug
--
-- Shows how to use the DAP plugin to debug your code.
--
-- Primarily focused on configuring the debugger for Go, but can
-- be extended to other languages as well. That's why it's called
-- kickstart.nvim and not kitchen-sink.nvim ;)
--
-- nvim-dap is a Debug Adapter Protocol client implementation for Neovim. nvim-dap
-- allows you to:
-- • Launch an application to debug
-- • Attach to running applications and debug them
-- • Set breakpoints and step through code
-- • Inspect the state of the application
--
-- https://github.com/mfussenegger/nvim-dap
--
return {
-- NOTE: Yes, you can install new plugins here!
'mfussenegger/nvim-dap',
enabled = false,
-- NOTE: And you can specify dependencies as well
dependencies = {
-- Creates a beautiful debugger UI