nvim: cursor line fg 8 -> 0, make line moving keybinds silent

This commit is contained in:
Cynthia Foxwell 2022-03-23 21:26:10 -06:00
parent d596c467a5
commit 5862004b0a
1 changed files with 6 additions and 6 deletions

View File

@ -107,10 +107,10 @@ let g:NERDTreeGitStatusIndicatorMapCustom = {
" keys
tnoremap <Esc> <C-\><C-n>
nnoremap <S-Up> :m-2<CR>
nnoremap <S-Down> :m+<CR>
inoremap <S-Up> <Esc>:m-2<CR>
inoremap <S-Down> <Esc>:m+<CR>
nnoremap <silent> <S-Up> :m-2<CR>
nnoremap <silent> <S-Down> :m+<CR>
inoremap <silent> <S-Up> <Esc>:m-2<CR>
inoremap <silent> <S-Down> <Esc>:m+<CR>
nnoremap <silent> <C-b> :NERDTreeToggle<CR>
":lua require'bufferline.state'.set_offset(require'nvim-tree.view'.win_open() and 30 or 0)<CR>
@ -172,8 +172,8 @@ endfunction
hi Normal ctermbg=NONE
hi LineNr ctermfg=7
hi CursorLineNr ctermfg=1 ctermbg=8
hi CursorLine cterm=NONE ctermfg=NONE ctermbg=8
hi CursorLineNr ctermfg=1 ctermbg=0
hi CursorLine cterm=NONE ctermfg=NONE ctermbg=0
hi StatusLine ctermbg=2 ctermfg=0
hi StatusLineNC ctermbg=7 ctermfg=0
hi VertSplit ctermbg=0 ctermfg=0