diff options
author | Max Christian Pohle | 2017-07-05 22:16:36 +0200 |
---|---|---|
committer | Max Christian Pohle | 2017-07-05 22:16:36 +0200 |
commit | c6a570a4bd847e9b1ef20ac2cf7c3c091c896224 (patch) | |
tree | 2a331bb69ade696af9fef939a8d90fdb0a5ae6cd | |
parent | d29f07ae716a12dbc973c5da46bdf6a3175cd714 (diff) | |
download | vim-c6a570a4bd847e9b1ef20ac2cf7c3c091c896224.tar.bz2 vim-c6a570a4bd847e9b1ef20ac2cf7c3c091c896224.zip |
Removed foldcolumn
-rw-r--r-- | vimrc-full | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ set foldenable | " explicitly enable code folding, since this con | |||
40 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands | 40 | set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands |
41 | set noequalalways | " do not evenly size windows when opening new or closing old | 41 | set noequalalways | " do not evenly size windows when opening new or closing old |
42 | set foldmethod=syntax | " foldlevel: syntax, indent, manual | 42 | set foldmethod=syntax | " foldlevel: syntax, indent, manual |
43 | set foldcolumn=1 | " if code folding gets used display it in the clutter bar, where line numbers live | 43 | set foldcolumn=0 | " I think I don't need this second indicator |
44 | set foldclose=all | " automatically fold, when the cursor leaves the folded area | 44 | set foldclose=all | " automatically fold, when the cursor leaves the folded area |
45 | set foldopen=block,hor,search | " when do we unfold? | 45 | set foldopen=block,hor,search | " when do we unfold? |
46 | set foldtext=Foldtext() | " | 46 | set foldtext=Foldtext() | " |