summaryrefslogtreecommitdiff
path: root/lua/plugins.lua
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-07-14 23:15:12 -0400
committerchristianchiarulli <[email protected]>2021-07-14 23:15:12 -0400
commitf58782563ea933f31e8886f511ec2b5824def19b (patch)
treee6cfaf7f5a980cfe19b2a9d884a75e363e1e78e8 /lua/plugins.lua
parentf95e150518e40f08a2cb31365e90895e31465d7e (diff)
user toggleterm instead of fterm
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r--lua/plugins.lua15
1 files changed, 12 insertions, 3 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua
index e7092787..a867cfbe 100644
--- a/lua/plugins.lua
+++ b/lua/plugins.lua
@@ -189,13 +189,22 @@ return require("packer").startup(function(use)
-- TODO: remove in favor of akinsho/nvim-toggleterm.lua
-- Floating terminal
+ -- use {
+ -- "numToStr/FTerm.nvim",
+ -- event = "BufWinEnter",
+ -- config = function()
+ -- require("core.floatterm").setup()
+ -- end,
+ -- disable = not O.plugin.floatterm.active,
+ -- }
+
use {
- "numToStr/FTerm.nvim",
+ "akinsho/nvim-toggleterm.lua",
event = "BufWinEnter",
config = function()
- require("core.floatterm").setup()
+ require("core.terminal").setup()
end,
- disable = not O.plugin.floatterm.active,
+ disable = not O.plugin.terminal.active,
}
-- Zen Mode