summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-09 21:34:12 -0400
committerchristianchiarulli <[email protected]>2021-07-09 21:34:12 -0400
commit4ff04e31f0216278f0549b5c493e153d66759e00 (patch)
tree9cfce5e41503beb0d66448eba89328198a921c62 /lua/plugins.lua
parentb8182d5aeecd50ad6a7d4f5b9b1a8ccbd8bbad02 (diff)
config refactor
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua13
1 files changed, 3 insertions, 10 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index d107657d..a3978866 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -36,7 +36,7 @@ return require("packer").startup(function(use)
use {
"nvim-telescope/telescope.nvim",
config = [[require('lv-telescope')]],
- --event = "BufEnter",
+ event = "BufWinEnter",
}
-- Autocomplete
@@ -158,13 +158,6 @@ return require("packer").startup(function(use)
disable = not O.plugin.zen.active,
}
- -- Treesitter playground
- use {
- "nvim-treesitter/playground",
- event = "BufRead",
- disable = not O.plugin.ts_playground.active,
- }
-
use {
"lukas-reineke/indent-blankline.nvim",
event = "BufRead",
@@ -198,7 +191,7 @@ return require("packer").startup(function(use)
config = function()
require "lv-dap"
end,
- disable = not O.plugin.debug.active,
+ disable = not O.plugin.dap.active,
}
-- Floating terminal
@@ -246,7 +239,7 @@ return require("packer").startup(function(use)
use {
"Pocco81/DAPInstall.nvim",
-- event = "BufRead",
- disable = not O.plugin.dap_install.active,
+ disable = not O.plugin.dap.active,
}
-- LANGUAGE SPECIFIC GOES HERE