aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-05-08 01:13:35 +0200
committerMax Christian Pohle2017-05-08 01:13:35 +0200
commit5abd7ac11cd7bc204b7e1a9c38e35e038f9c6b33 (patch)
treea050a7c5dc2958a8e477e7336a536535604c05c8
parent7b3c4ed2593c1d69cf3175f1f7196a3b222976d0 (diff)
downloadvim-5abd7ac11cd7bc204b7e1a9c38e35e038f9c6b33.tar.bz2
vim-5abd7ac11cd7bc204b7e1a9c38e35e038f9c6b33.zip
Only allow top level folding by default
-rw-r--r--vimrc-full1
1 files changed, 1 insertions, 0 deletions
diff --git a/vimrc-full b/vimrc-full
index 9fc1857..2b68c73 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -303,6 +303,7 @@ set foldcolumn=1 | " if code folding gets used display it in the cl
303set foldclose=all | " automatically fold, when the cursor leaves the folded area 303set foldclose=all | " automatically fold, when the cursor leaves the folded area
304set foldopen=all | " unfold when cursor moves into the closed fold 304set foldopen=all | " unfold when cursor moves into the closed fold
305set foldtext=Foldtext() | " 305set foldtext=Foldtext() | "
306set foldnestmax=1 | " top level folding only
306set relativenumber | " relative line numbers can speed up navigation 307set relativenumber | " relative line numbers can speed up navigation
307set noshowmode | " because we are using some powerline derivat 308set noshowmode | " because we are using some powerline derivat
308set nostartofline | " when scrolling: do not move the cursor to column 1 309set nostartofline | " when scrolling: do not move the cursor to column 1
..