lsplines fix
This commit is contained in:
@ -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>
|
||||
|
@ -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
|
Reference in New Issue
Block a user