summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/default-config.lua3
-rw-r--r--lua/plugins.lua6
2 files changed, 8 insertions, 1 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua
index efb94f01..bcb0f333 100644
--- a/lua/default-config.lua
+++ b/lua/default-config.lua
@@ -61,7 +61,8 @@ O = {
lush = {active = false},
diffview = {active = false},
bracey = {active = false},
- telescope_project = {active = false}
+ telescope_project = {active = false},
+ dap_install = {active = false}
},
diff --git a/lua/plugins.lua b/lua/plugins.lua
index c15b0b27..f4abdce7 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -400,6 +400,12 @@ return require("packer").startup(function(use)
run = 'npm install --prefix server',
disable = not O.plugin.bracey.active
}
+ -- Debugger management
+ use {
+ 'Pocco81/DAPInstall.nvim',
+ event = "BufRead",
+ disable = not O.plugin.dap_install.active
+ }
-- LANGUAGE SPECIFIC GOES HERE