aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Christian Pohle2015-09-14 00:38:30 +0200
committerMax Christian Pohle2015-09-14 00:38:30 +0200
commit6f784b3a737827df10305e65d54cd1c92ce9c910 (patch)
treefd5df25d2c5396d4d47dfe2cc78a05fb77b3e4fe
parent81571661d0c39e7261d1a55ff641e56970defff0 (diff)
downloadvim-6f784b3a737827df10305e65d54cd1c92ce9c910.tar.bz2
vim-6f784b3a737827df10305e65d54cd1c92ce9c910.zip
added wildmenu support and some syntax tweaks
-rw-r--r--vimrc7
1 files changed, 4 insertions, 3 deletions
diff --git a/vimrc b/vimrc
index bbf0f03..b61537a 100644
--- a/vimrc
+++ b/vimrc
@@ -52,18 +52,19 @@ set selectmode=key,mouse | " make [strg+]shift-{left|right} enter SELECT mo
52set whichwrap=b,s,<,>,[,] | " beyond beginning/end line causes cusor to wrap 52set whichwrap=b,s,<,>,[,] | " beyond beginning/end line causes cusor to wrap
53set backspace=indent,eol,start| " allow backspacing over everything in insert mode, not needed with whichwrap 53set backspace=indent,eol,start| " allow backspacing over everything in insert mode, not needed with whichwrap
54set diffopt+=iwhite,filler | " lets diff ignore white spaces 54set diffopt+=iwhite,filler | " lets diff ignore white spaces
55set spell| set spelllang=en,de| " enable spell checker 55set spell spelllang=en,de | " enable spell checker
56set virtualedit=onemore " one character beyond the line length should be navigatable (options: all,insert,block,onemore) 56set virtualedit=onemore " one character beyond the line length should be navigatable (options: all,insert,block,onemore)
57set breakindent cpoptions+=n | " when wrapping lines indent wrapped line to align with the previews 57set breakindent cpoptions+=n | " when wrapping lines indent wrapped line to align with the previews
58set linebreak | " do not wrap in the middle of words 58set linebreak | " do not wrap in the middle of words
59set showcmd | " displays status line messages while selecting (matrix size) 59set showcmd | " displays status line messages while selecting (matrix size)
60set nofoldenable | " do not fold code automatically 60set nofoldenable | " do not fold code automatically
61set tags+=~/.vim/systags | " ctags -R -f ~/.vim/systags /usr/include /usr/local/include 61set tags+=~/.vim/systags | " ctags -R -f ~/.vim/systags /usr/include /usr/local/include
62set wildmenu wildmode=full | " wildmenu code completion
62 63
63" search... 64" search...
64set ignorecase|set smartcase | " if search pattern contains uppercase then search is case sensitive 65set ignorecase smartcase | " if search pattern contains uppercase then search is case sensitive
65set incsearch | " do incremental searching 66set incsearch | " do incremental searching
66set showmatch|set matchtime=4 | " blinks matching braces 67set showmatch matchtime=4 | " blinks matching braces
67 68
68set novisualbell | " don't beep 69set novisualbell | " don't beep
69set noerrorbells | " don't beep 70set noerrorbells | " don't beep
..