Incremental select with incr.nvim

This commit is contained in:
Fabian Becker
2025-10-01 14:04:34 +03:00
parent 14bb6cc423
commit 4bdaa38757
2 changed files with 7 additions and 3 deletions

View File

@@ -68,9 +68,9 @@ vim.cmd([[
noremap <silent> <C-Down> :resize -3<CR> noremap <silent> <C-Down> :resize -3<CR>
]]) ]])
-- Tab switch buffer -- -- Tab switch buffer
nnoremap('<TAB>', ':bnext<CR>') -- nnoremap('<TAB>', ':bnext<CR>')
nnoremap('<S-TAB>', ':bprevious<CR>') -- nnoremap('<S-TAB>', ':bprevious<CR>')
-- Quickfix list -- Quickfix list
nnoremap('[q', ':cprev<CR>') nnoremap('[q', ':cprev<CR>')

View File

@@ -32,4 +32,8 @@ return {
}, },
-- Used to display LSP status in Lualine -- Used to display LSP status in Lualine
{ 'nvim-lua/lsp-status.nvim' }, { 'nvim-lua/lsp-status.nvim' },
{
'daliusd/incr.nvim',
config = true,
}
} }