lsplines fix

This commit is contained in:
Christian Nieves
2023-11-05 22:11:41 -06:00
parent 9ddc25c39d
commit 6157a013dc
9 changed files with 78 additions and 87 deletions

View File

@ -30,11 +30,6 @@ nnoremap K :tabnext<CR>
nnoremap tt :tabedit<Space>
nnoremap td :tabclose<CR>
" Shift-U and D for document navigation(page up, page down)
nnoremap <S-U> <C-U>
map <S-D> <nop>
nnoremap <S-D> <C-D>
" Line swapping. I don't really use this that often
nnoremap [e :<c-u>execute 'move -1-'. v:count1<cr>
nnoremap ]e :<c-u>execute 'move +'. v:count1<cr>

View File

@ -1,16 +0,0 @@
" disable/enable the cursor line on window enter/exit
au WinEnter * setlocal cursorline
au WinLeave * setlocal nocursorline
highlight ExtraWhitespace ctermbg=red
" enable extra syntax hilighting for C++
let g:cpp_class_scope_highlight = 1
let g:cpp_experimental_template_highlight = 1
" Function to let me know what syntax hilighting group is under the cursor.
" Not used often
function! SynGroup()
let l:s = synID(line('.'), col('.'), 1)
echo synIDattr(l:s, 'name') . ' -> ' . synIDattr(synIDtrans(l:s), 'name')
endfun