diff options
author | Camil Staps | 2017-10-01 16:30:49 +0200 |
---|---|---|
committer | Camil Staps | 2017-10-01 16:30:49 +0200 |
commit | 36d73efa7315caeceaaa95cd9af867ffc6046b71 (patch) | |
tree | 1a6dd6d8696bc7823cfbad261407830b27040e9b /vim | |
parent | Fix network-dependent vim settings (diff) |
Fold fillchars to spaces; foldlevel=1 for Clean
Diffstat (limited to 'vim')
-rw-r--r-- | vim/.vim/after/ftplugin/clean.vim | 3 | ||||
-rw-r--r-- | vim/.vimrc | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/vim/.vim/after/ftplugin/clean.vim b/vim/.vim/after/ftplugin/clean.vim index 94f327e..3dcb1fb 100644 --- a/vim/.vim/after/ftplugin/clean.vim +++ b/vim/.vim/after/ftplugin/clean.vim @@ -1 +1,2 @@ -setlocal autoindent foldnestmax=0 +setlocal autoindent +setlocal foldlevel=1 @@ -46,6 +46,7 @@ set dir=~/.swp set listchars=nbsp:¬,tab:▸\ ,extends:»,precedes:«,trail:• set nolist set tabpagemax=30 +set fillchars+=fold:\ filetype plugin indent on syntax enable |