From 977c9f2c24497d2f5575206530d6d0f10512cf89 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 22 Mar 2024 11:10:09 -0500 Subject: [PATCH] feat(nvim): add keybindings for splitting terms in Neovide --- dots/.config/nvim/lua/neovide.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dots/.config/nvim/lua/neovide.lua b/dots/.config/nvim/lua/neovide.lua index 46e24d5d..248e4dba 100644 --- a/dots/.config/nvim/lua/neovide.lua +++ b/dots/.config/nvim/lua/neovide.lua @@ -25,3 +25,7 @@ vim.keymap.set({ "", "!", "v", "t" }, "", "tabprevious", { noremap -- Spawn new terminal in new tab vim.keymap.set({ "", "!", "v", "t" }, "", "tabnew | terminal", { noremap = true, silent = true }) +vim.keymap.set({ "n" }, "", "vertical belowright terminal", { noremap = true, silent = true }) +vim.keymap.set({ "n" }, "", "vertical aboveleft terminal", { noremap = true, silent = true }) +vim.keymap.set({ "n" }, "", "horizontal aboveleft terminal", { noremap = true, silent = true }) +vim.keymap.set({ "n" }, "", "horizontal belowright terminal", { noremap = true, silent = true })