summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-10 15:34:59 -0400
committerchristianchiarulli <[email protected]>2021-07-10 15:34:59 -0400
commit4b0304d9bd0910aa3a625b8aae68fee6ae39ea7a (patch)
tree6ecdde717d20de45c1bded84aae21cfb221e559e /lua/plugins.lua
parentf30158d3e38c2fe798f78948af9d2b0a8e3e03dd (diff)
remove lazyload dap
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index 779491db..123469ec 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -150,7 +150,7 @@ return require("packer").startup(function(use)
-- Debugging
use {
"mfussenegger/nvim-dap",
- event = "BufWinEnter",
+ -- event = "BufWinEnter",
config = function()
require "lv-dap"
end,
@@ -160,7 +160,7 @@ return require("packer").startup(function(use)
-- Debugger management
use {
"Pocco81/DAPInstall.nvim",
- event = "BufWinEnter",
+ -- event = "BufWinEnter",
-- event = "BufRead",
disable = not O.plugin.dap.active,
}
@@ -252,7 +252,7 @@ return require("packer").startup(function(use)
use {
"mfussenegger/nvim-jdtls",
- ft = { "java" },
+ -- ft = { "java" },
disable = not O.lang.java.java_tools.active,
}