feat: fold configuration
This commit is contained in:
parent
bb0c65607a
commit
9e21608a30
1 changed files with 7 additions and 1 deletions
8
vimrc
8
vimrc
|
@ -1,4 +1,4 @@
|
||||||
" source ~/.vim/vimrc.bepo
|
"source ~/.vim/vimrc.bepo
|
||||||
|
|
||||||
" load plugins
|
" load plugins
|
||||||
" execute pathogen#infect()
|
" execute pathogen#infect()
|
||||||
|
@ -39,6 +39,12 @@ set showmatch " highlight matching [{()}]
|
||||||
set incsearch " search as characters are entered
|
set incsearch " search as characters are entered
|
||||||
set hlsearch " highlight matches
|
set hlsearch " highlight matches
|
||||||
|
|
||||||
|
" folding (cacher les fonctions)
|
||||||
|
set foldenable " activation des fold
|
||||||
|
set foldmethod=syntax
|
||||||
|
set foldlevelstart=10 " nombre de fold déjà ouvert de base
|
||||||
|
set foldnestmax=10 " nombre de fold dans des folds
|
||||||
|
|
||||||
" paramètres de plugins
|
" paramètres de plugins
|
||||||
let g:rainbow_active = 1
|
let g:rainbow_active = 1
|
||||||
let g:doge_doc_standard_c='kernel_doc'
|
let g:doge_doc_standard_c='kernel_doc'
|
||||||
|
|
Reference in a new issue