mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-07-20 18:54:25 +02:00
user toggleterm instead of fterm
This commit is contained in:
parent
f95e150518
commit
f58782563e
7 changed files with 85 additions and 85 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue