aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vimrc-full6
1 files changed, 5 insertions, 1 deletions
diff --git a/vimrc-full b/vimrc-full
index 07166cb..37d5ea8 100644
--- a/vimrc-full
+++ b/vimrc-full
@@ -26,7 +26,6 @@ set nocursorcolumn | " turn visual cursor column off (improves perfor
26set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers 26set nrformats+=alpha | " allows CTRL-A & CTRL-X to increment and decrement letters, not just numbers
27set nofoldenable | " disable folding, because we have zi to toggle foldenable :) 27set nofoldenable | " disable folding, because we have zi to toggle foldenable :)
28set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands 28set exrc | " enable exrc, a specific .exrc per project, which can contain usual .vimrc commands
29set noequalalways | " do not evenly size windows when opening new or closing old
30set foldmethod=syntax | " foldlevel: syntax, indent, manual 29set foldmethod=syntax | " foldlevel: syntax, indent, manual
31set foldcolumn=0 | " I think I don't need this second indicator 30set foldcolumn=0 | " I think I don't need this second indicator
32set foldclose=all | " automatically fold, when the cursor leaves the folded area 31set foldclose=all | " automatically fold, when the cursor leaves the folded area
@@ -65,6 +64,11 @@ set virtualedit=all | " virtual edit should be default behaviour, beca
65set writedelay=0 64set writedelay=0
66set wildmenu | " use a menu in the command line 65set wildmenu | " use a menu in the command line
67set wildmode=longest:full | " do not preselect any entry and show all possible 66set wildmode=longest:full | " do not preselect any entry and show all possible
67
68set nocindent smartindent | " use smart indent rather then cindent
69set noshiftround | " indent/unindent sna=ps to multiple of shiftwidths
70set equalalways | " do not evenly size windows when opening new or closing old
71set nocursorline | " turn visual cursor line off (improves performance)
68"======================================================================================================================= 72"=======================================================================================================================
69 73
70" START: LOADING PLUGINS 74" START: LOADING PLUGINS
..