feat(nvim): add keybindings for splitting terms in Neovide
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 41s
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 41s
This commit is contained in:
parent
31945d82d0
commit
977c9f2c24
@ -25,3 +25,7 @@ vim.keymap.set({ "", "!", "v", "t" }, "<D-z>", "<cmd>tabprevious<CR>", { noremap
|
||||
|
||||
-- Spawn new terminal in new tab
|
||||
vim.keymap.set({ "", "!", "v", "t" }, "<D-t>", "<cmd>tabnew | terminal<CR>", { noremap = true, silent = true })
|
||||
vim.keymap.set({ "n" }, "<C-S-Right>", "<cmd>vertical belowright terminal<CR>", { noremap = true, silent = true })
|
||||
vim.keymap.set({ "n" }, "<C-S-Left>", "<cmd>vertical aboveleft terminal<CR>", { noremap = true, silent = true })
|
||||
vim.keymap.set({ "n" }, "<C-S-Up>", "<cmd>horizontal aboveleft terminal<CR>", { noremap = true, silent = true })
|
||||
vim.keymap.set({ "n" }, "<C-S-Down>", "<cmd>horizontal belowright terminal<CR>", { noremap = true, silent = true })
|
||||
|
Loading…
Reference in New Issue
Block a user