mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
nvim/lua/user/keymaps.lua: add split keybind
This commit is contained in:
parent
b56933fe41
commit
d6533309c0
1 changed files with 7 additions and 0 deletions
|
|
@ -60,6 +60,13 @@ vim.keymap.set({ 'n', 'x' }, '<leader>y', [["+y]], {desc = "Yank into system reg
|
|||
vim.keymap.set({ 'n', 'x' }, '<leader>p', [["+p]], {desc = "Paste system register"})
|
||||
vim.keymap.set('x', '<leader>p', [["_dP]], { silent = true, desc = "Paste without storing deleted content in register" })
|
||||
|
||||
|
||||
--
|
||||
-- Splits
|
||||
--
|
||||
|
||||
vim.keymap.set('n', '<S-f>', '<cmd>vs<cr>', { desc = "Vertical split"})
|
||||
|
||||
--
|
||||
-- Navigation
|
||||
--
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue