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:
Thomas Gideon 2015-10-13 23:00:13 -04:00
parent 7efce3bc47
commit 922ff312bc
3 changed files with 4 additions and 3 deletions

View file

@ -1,2 +1,3 @@
setlocal fdm=indent
setlocal smartindent
setlocal list

View file

@ -3,7 +3,7 @@ setlocal tw=0
" keep soft breaks between words
setlocal linebreak
" turn list off as it interferes with soft wrapping
setlocal nolist!
setlocal nolist
" turn off breaking when typing new text
setlocal formatoptions-=t
" turn off line width hint

4
vimrc
View file

@ -34,9 +34,9 @@ set foldmethod=syntax
" set a readable width
set textwidth=80
" make white space visible, where that matters
set list
set list!
" except for help
autocmd FileType help set nolist
autocmd FileType help setlocal nolist
" set up folding preferences
set fde=1
" vim's spelling is smart enough for code, to only check comments