summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-10 01:21:22 -0400
committerchristianchiarulli <[email protected]>2021-07-10 01:21:22 -0400
commit1235d18f8d0dbbd1d962dd6b77094f4b07ad96ee (patch)
tree2ecc546b3105b8bddf7057930d2917972d05a6ec /lua/plugins.lua
parent2aa02e23126e727d025081e9ca2fc40291c93c7e (diff)
move plugins
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua20
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",