Fixed buffer navigation keybind.

<crtl>-<left> and <crtl>-<right> to navigate open buffers.
This commit is contained in:
2025-04-28 09:45:08 -04:00
parent 97bd1e0365
commit 81ac79f7b4

4
.vimrc
View File

@@ -129,7 +129,6 @@ Plug 'bullets-vim/bullets.vim'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
call plug#end()
" ---------------------------------------------------------------------------------------------------------------------
@@ -165,7 +164,6 @@ let g:bullets_outline_levels = ['num', 'abc', 'std*', 'std+', 'std-']
"vim-airline
let g:airline#extensions#tabline#enabled = 1
let g:airline_detect_theme_from_guicolors = 1
"let g:airline_theme = 'angr'
" FZF Actions
" <c-x> to open FZF result in a split
@@ -207,7 +205,7 @@ nnoremap <leader>C :set cursorline! cursorcolumn!<CR>
" <ctrl>-arrow left/right to navigate BUFFERS
map <esc>[1;5D :bp <enter>
map <esc>[1;5C :bp <enter>
map <esc>[1;5C :bn <enter>
" <leader>b to open FZF buffers
map <leader>b :Buffers<CR>