diff options
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index b3bcf205..a7b308cb 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -196,6 +196,13 @@ return require("packer").startup(function(use) disable = not O.plugin.dap.active, } + -- Debugger management + use { + "Pocco81/DAPInstall.nvim", + -- event = "BufRead", + disable = not O.plugin.dap.active, + } + -- Floating terminal use { "numToStr/FTerm.nvim", @@ -237,13 +244,6 @@ return require("packer").startup(function(use) disable = not O.plugin.lush.active, } - -- Debugger management - use { - "Pocco81/DAPInstall.nvim", - -- event = "BufRead", - disable = not O.plugin.dap.active, - } - -- LANGUAGE SPECIFIC GOES HERE use { "lervag/vimtex", @@ -294,12 +294,6 @@ return require("packer").startup(function(use) -- end, -- } - -- Pretty parentheses - use { - "p00f/nvim-ts-rainbow", - disable = not O.plugin.ts_rainbow.active, - } - -- Autotags <div>|</div> use { "windwp/nvim-ts-autotag", |