Hack to set list again after something sets nolist
The main vimrc sets list but opening a buffer with filetype javascript (and maybe others) is nolist. Maybe the syntax support is overriding??
This commit is contained in:
parent
7efce3bc47
commit
922ff312bc
3 changed files with 4 additions and 3 deletions
|
@ -1,2 +1,3 @@
|
||||||
setlocal fdm=indent
|
setlocal fdm=indent
|
||||||
setlocal smartindent
|
setlocal smartindent
|
||||||
|
setlocal list
|
||||||
|
|
|
@ -3,7 +3,7 @@ setlocal tw=0
|
||||||
" keep soft breaks between words
|
" keep soft breaks between words
|
||||||
setlocal linebreak
|
setlocal linebreak
|
||||||
" turn list off as it interferes with soft wrapping
|
" turn list off as it interferes with soft wrapping
|
||||||
setlocal nolist!
|
setlocal nolist
|
||||||
" turn off breaking when typing new text
|
" turn off breaking when typing new text
|
||||||
setlocal formatoptions-=t
|
setlocal formatoptions-=t
|
||||||
" turn off line width hint
|
" turn off line width hint
|
||||||
|
|
4
vimrc
4
vimrc
|
@ -34,9 +34,9 @@ set foldmethod=syntax
|
||||||
" set a readable width
|
" set a readable width
|
||||||
set textwidth=80
|
set textwidth=80
|
||||||
" make white space visible, where that matters
|
" make white space visible, where that matters
|
||||||
set list
|
set list!
|
||||||
" except for help
|
" except for help
|
||||||
autocmd FileType help set nolist
|
autocmd FileType help setlocal nolist
|
||||||
" set up folding preferences
|
" set up folding preferences
|
||||||
set fde=1
|
set fde=1
|
||||||
" vim's spelling is smart enough for code, to only check comments
|
" vim's spelling is smart enough for code, to only check comments
|
||||||
|
|
Loading…
Reference in a new issue