diff options
Diffstat (limited to 'vimrc-full')
-rw-r--r-- | vimrc-full | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ | |||
4 | " GENERAL: | 4 | " GENERAL: |
5 | "======================================================================================================================= | 5 | "======================================================================================================================= |
6 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands | 6 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands |
7 | set textwidth=120 | " better done with modeline or local exrc | 7 | set textwidth=0 | " better done with modeline or local exrc and not here |
8 | set ts=4 sts=4 sw=4 expandtab | " better done with a modeline or local exrc | 8 | set ts=4 sts=4 sw=4 expandtab | " better done with a modeline or local exrc |
9 | set virtualedit=all | " virtual edit should be default behaviour, because I don't see any reason against | 9 | set virtualedit=all | " virtual edit should be default behaviour, because I don't see any reason against |
10 | set nonumber norelativenumber | " do not show numbers by default, because that causes a performance loss, instead activate them on a file type basis | 10 | set nonumber norelativenumber | " do not show numbers by default, because that causes a performance loss, instead activate them on a file type basis |
@@ -223,9 +223,9 @@ set foldcolumn=0 | " I think I don't need this second indicator | |||
223 | " set foldmethod=syntax | " foldlevel: syntax, indent, manual / foldmethod=syntax makes Vim incredible slow | 223 | " set foldmethod=syntax | " foldlevel: syntax, indent, manual / foldmethod=syntax makes Vim incredible slow |
224 | set foldnestmax=1 | " top level folding only | 224 | set foldnestmax=1 | " top level folding only |
225 | set foldopen=block,hor,search | " when do we unfold? | 225 | set foldopen=block,hor,search | " when do we unfold? |
226 | let v:foldstart = "FOO" | ||
227 | " set foldtext=Foldtext() | " | 226 | " set foldtext=Foldtext() | " |
228 | set foldtext=v:folddashes.substitute(getline(v:foldstart),'\\v^/[/*]\','','g') | 227 | " set foldtext=v:folddashes.substitute(getline(v:foldstart),'\\v^/[/*]\','','g') |
228 | set foldtext='⊞\ '.getline(v:foldstart).getline(v:foldstart+1).'↵'.getline(v:foldstart+2) | ||
229 | 229 | ||
230 | " vim window behaviour | 230 | " vim window behaviour |
231 | set splitbelow | " open new windows below the current one (i find that more intuitive) | 231 | set splitbelow | " open new windows below the current one (i find that more intuitive) |