up
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user