Added terminal toggler
This commit is contained in:
22
lua/plugins/terminal.lua
Normal file
22
lua/plugins/terminal.lua
Normal file
@@ -0,0 +1,22 @@
|
||||
return {
|
||||
"akinsho/toggleterm.nvim",
|
||||
version = "v2.12.0",
|
||||
config = function()
|
||||
require("toggleterm").setup({
|
||||
open_mapping = [[<c-\>]],
|
||||
direction = "vertical",
|
||||
|
||||
size = vim.o.columns * 0.4,
|
||||
})
|
||||
|
||||
local opts = { buffer = 0 }
|
||||
vim.keymap.set("t", "<esc>", [[<C-\><C-n>]], opts)
|
||||
vim.keymap.set("t", "jk", [[<C-\><C-n>]], opts)
|
||||
vim.keymap.set("t", "<C-h>", [[<Cmd>wincmd h<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-j>", [[<Cmd>wincmd j<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-k>", [[<Cmd>wincmd k<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-l>", [[<Cmd>wincmd l<CR>]], opts)
|
||||
vim.keymap.set("t", "<C-w>", [[<C-\><C-n><C-w>]], opts)
|
||||
end,
|
||||
keys = [[<c-\>]],
|
||||
}
|
||||
Reference in New Issue
Block a user