mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-17 09:25:52 +00:00
c911f34027
With default configs and configs for plugins. Wrap autocommands in a vimrc group as well.
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
|