Add tab bind for neovim
All checks were successful
pre-commit / pre-commit (push) Successful in 2m1s
All checks were successful
pre-commit / pre-commit (push) Successful in 2m1s
This commit is contained in:
parent
9169c48bbe
commit
fb680669fd
@ -20,3 +20,7 @@ vim.keymap.set('n', '<leader>ff', require('telescope.builtin').find_files,
|
|||||||
{ desc = '[F]ind [F]iles' })
|
{ desc = '[F]ind [F]iles' })
|
||||||
vim.keymap.set('n', '<leader>fg', require('telescope.builtin').live_grep,
|
vim.keymap.set('n', '<leader>fg', require('telescope.builtin').live_grep,
|
||||||
{ desc = '[F]ind by [G]rep' })
|
{ desc = '[F]ind by [G]rep' })
|
||||||
|
|
||||||
|
vim.keymap.set('n', '<leader>tt', ':tabnew<cr>')
|
||||||
|
vim.keymap.set('n', '<leader>tn', ':tabnext<cr>')
|
||||||
|
vim.keymap.set('n', '<leader>tp', ':tabprevious<cr>')
|
||||||
|
@ -9,7 +9,10 @@
|
|||||||
"splash"
|
"splash"
|
||||||
"rd.systemd.show_status=false"
|
"rd.systemd.show_status=false"
|
||||||
];
|
];
|
||||||
boot.loader.systemd-boot = { enable = true; };
|
boot.loader.systemd-boot = {
|
||||||
|
enable = true;
|
||||||
|
configurationLimit = 10;
|
||||||
|
};
|
||||||
boot.loader.efi = { canTouchEfiVariables = true; };
|
boot.loader.efi = { canTouchEfiVariables = true; };
|
||||||
|
|
||||||
# Networking stuff
|
# Networking stuff
|
||||||
|
Loading…
Reference in New Issue
Block a user