made navigating long lines nice again and made word wrap more readable in text documents
This commit is contained in:
parent
5ffa94ae86
commit
e7073ec5a7
2 changed files with 3 additions and 2 deletions
|
|
@ -66,7 +66,7 @@ function! s:on_lsp_buffer_enabled() abort
|
|||
nmap <buffer> gr <plug>(lsp-references)
|
||||
nmap <buffer> gi <plug>(lsp-implementation)
|
||||
nmap <buffer> gt <plug>(lsp-type-definition)
|
||||
nmap <buffer> gj <plug>(lsp-document-diagnostics)
|
||||
nmap <buffer> gx <plug>(lsp-document-diagnostics)
|
||||
nmap <buffer> <leader>rn <plug>(lsp-rename)
|
||||
nmap <buffer> [g <Plug>(lsp-previous-diagnostic)
|
||||
nmap <buffer> ]g <Plug>(lsp-next-diagnostic)
|
||||
|
|
|
|||
3
vimrc
3
vimrc
|
|
@ -39,6 +39,7 @@ augroup vimrcEx
|
|||
" For all text files set 'textwidth' to 78 characters.
|
||||
"autocmd FileType text setlocal textwidth=78
|
||||
autocmd FileType dotoo,org,tex,text setlocal textwidth=80
|
||||
autocmd FileType dotoo,org,tex,text setlocal linebreak
|
||||
autocmd FileType dotoo,org,tex,text setlocal spell spelllang=en_gb
|
||||
|
||||
|
||||
|
|
@ -91,7 +92,7 @@ hi EndOfBuffer guibg=NONE ctermbg=NONE
|
|||
set cursorline
|
||||
hi clear CursorLine
|
||||
hi CursorLine ctermbg=8 guibg=#404040
|
||||
hi Cursor ctermbg=15
|
||||
hi Cursor ctermbg=15
|
||||
" set spellcheck
|
||||
"set spell
|
||||
" Remap Lex
|
||||
|
|
|
|||
Loading…
Reference in a new issue