mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-19 03:25:33 +00:00
18 lines
446 B
VimL
18 lines
446 B
VimL
|
" Searching, completion and folds
|
||
|
"======================================================================
|
||
|
|
||
|
set ignorecase
|
||
|
set smartcase
|
||
|
set hlsearch
|
||
|
set showmatch
|
||
|
set wrapscan
|
||
|
|
||
|
set wildmode=list:longest,list:full
|
||
|
set wildmenu
|
||
|
|
||
|
set foldignore=
|
||
|
set foldmethod=indent " indent folding
|
||
|
set foldnestmax=20 " max 20 levels of folding
|
||
|
set nofoldenable " dont fold by default - let me do it
|
||
|
set foldlevelstart=1 " deactivate folding on fileload
|