🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

plugin: add default tabs keymaps

robin 99730478 2064e812

+6
+6
config/plugin/keymap.bracketed.lua
··· 1 + -- go to the previous tab 2 + vim.keymap.set("n", "[<tab>", vim.cmd.tabprev) 3 + -- go to the next tab 4 + vim.keymap.set("n", "]<tab>", vim.cmd.tabnext) 5 + -- create a new tab with the current window 6 + vim.keymap.set("n", "<C-w><tab>", "<cmd>tab split<cr>")