From 6f784b3a737827df10305e65d54cd1c92ce9c910 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 14 Sep 2015 00:38:30 +0200 Subject: added wildmenu support and some syntax tweaks --- vimrc | 7 ++++--- 1 file 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 set whichwrap=b,s,<,>,[,] | " beyond beginning/end line causes cusor to wrap set backspace=indent,eol,start| " allow backspacing over everything in insert mode, not needed with whichwrap set diffopt+=iwhite,filler | " lets diff ignore white spaces -set spell| set spelllang=en,de| " enable spell checker +set spell spelllang=en,de | " enable spell checker set virtualedit=onemore " one character beyond the line length should be navigatable (options: all,insert,block,onemore) set breakindent cpoptions+=n | " when wrapping lines indent wrapped line to align with the previews set linebreak | " do not wrap in the middle of words set showcmd | " displays status line messages while selecting (matrix size) set nofoldenable | " do not fold code automatically set tags+=~/.vim/systags | " ctags -R -f ~/.vim/systags /usr/include /usr/local/include +set wildmenu wildmode=full | " wildmenu code completion " search... -set ignorecase|set smartcase | " if search pattern contains uppercase then search is case sensitive +set ignorecase smartcase | " if search pattern contains uppercase then search is case sensitive set incsearch | " do incremental searching -set showmatch|set matchtime=4 | " blinks matching braces +set showmatch matchtime=4 | " blinks matching braces set novisualbell | " don't beep set noerrorbells | " don't beep -- cgit v1.2.3