Adding DAPInstall.nvim in regards to #574 (#577)

This commit is contained in:
Abouzar Parvan 2021-07-02 08:34:28 +04:30 committed by GitHub
parent 20ed47e21e
commit 4d6cc88e0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -61,7 +61,8 @@ O = {
lush = {active = false}, lush = {active = false},
diffview = {active = false}, diffview = {active = false},
bracey = {active = false}, bracey = {active = false},
telescope_project = {active = false} telescope_project = {active = false},
dap_install = {active = false}
}, },

View file

@ -400,6 +400,12 @@ return require("packer").startup(function(use)
run = 'npm install --prefix server', run = 'npm install --prefix server',
disable = not O.plugin.bracey.active 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 -- LANGUAGE SPECIFIC GOES HERE