aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2017-08-04 14:11:45 +0200
committerMax Christian Pohle2017-08-04 14:11:45 +0200
commit395f8d32166d598f2899cc388948d5d9a6824c9b (patch)
tree2d4d49ef022c8f7cf2884464bde959c6a04684d2
parentdc6c04568d9a9f4d4d9c66527f1d9e91b3bfd4b7 (diff)
downloadvim-karlmarks-395f8d32166d598f2899cc388948d5d9a6824c9b.tar.bz2
vim-karlmarks-395f8d32166d598f2899cc388948d5d9a6824c9b.zip
Started using smartindent to better match coding style
-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
..