summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-10 02:39:00 -0400
committerchristianchiarulli <[email protected]>2021-07-10 02:39:00 -0400
commit5ef5b5aff12a54ca6ee2da7ed8122b599ea72a60 (patch)
treeb5879e9303ab5139be134d5c45f781cf2062c977 /lua/plugins.lua
parent44f4dc2e160c970a6c7f8a9036fff33f1bdc39a9 (diff)
more lazylkoad
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index a7b308cb..ce12ca7f 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -146,14 +146,13 @@ return require("packer").startup(function(use)
require("lv-dashboard").config()
end,
disable = not O.plugin.dashboard.active,
- -- opt = true,
}
-- Zen Mode
use {
"folke/zen-mode.nvim",
cmd = "ZenMode",
- -- event = "BufRead",
+ event = "BufRead",
config = function()
require("lv-zen").config()
end,
@@ -190,6 +189,7 @@ return require("packer").startup(function(use)
-- Debugging
use {
"mfussenegger/nvim-dap",
+ event = "BufWinEnter",
config = function()
require "lv-dap"
end,
@@ -199,10 +199,12 @@ return require("packer").startup(function(use)
-- Debugger management
use {
"Pocco81/DAPInstall.nvim",
+ event = "BufWinEnter",
-- event = "BufRead",
disable = not O.plugin.dap.active,
}
+ -- TODO remove in favor of akinsho/nvim-toggleterm.lua
-- Floating terminal
use {
"numToStr/FTerm.nvim",