add floatterm
This commit is contained in:
parent
0dafad8864
commit
41547f9fa6
2 changed files with 8 additions and 3 deletions
|
@ -48,7 +48,8 @@ vim.keymap.set("n", "nsv", ":vsplit<CR>", opts)
|
|||
vim.keymap.set("n", "nsh", ":split<CR>", opts)
|
||||
|
||||
-- terminal
|
||||
vim.keymap.set("n", "<leader>t", ":split<CR> <BAR> :terminal<CR>")
|
||||
--vim.keymap.set("n", "<leader>t", ":split<CR> <BAR> :terminal<CR>")
|
||||
vim.keymap.set("n", "<leader>t", ":FloatermToggle<CR>")
|
||||
|
||||
-- exit terminal with esc
|
||||
vim.keymap.set("t", "<Esc>", "<C-\\><C-n>", opts)
|
||||
|
|
|
@ -130,7 +130,11 @@ local plugins = {
|
|||
end,
|
||||
event = 'VimEnter',
|
||||
dependencies = { { 'nvim-tree/nvim-web-devicons' } }
|
||||
}
|
||||
},
|
||||
|
||||
-- floating terminal, useful to mimic/be better than vscode
|
||||
'voldikss/vim-floaterm',
|
||||
|
||||
}
|
||||
|
||||
require("lazy").setup(plugins, {})
|
||||
|
|
Loading…
Reference in a new issue