summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua14
1 files changed, 2 insertions, 12 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index 69542b94..50f96517 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -217,12 +217,9 @@ return require("packer").startup(function(use)
-- Floating terminal
use {
"numToStr/FTerm.nvim",
- event = "BufRead",
+ event = "BufWinEnter",
config = function()
- require("FTerm").setup {
- dimensions = { height = 0.8, width = 0.8, x = 0.5, y = 0.5 },
- border = "single", -- or 'double'
- }
+ require('lv-floatterm').config()
end,
disable = not O.plugin.floatterm.active,
}
@@ -249,13 +246,6 @@ return require("packer").startup(function(use)
disable = not O.plugin.sanegx.active,
}
- -- Lazygit
- use {
- "kdheepak/lazygit.nvim",
- cmd = "LazyGit",
- disable = not O.plugin.lazygit.active,
- }
-
-- Diffview
use {
"sindrets/diffview.nvim",