From 9e21608a30c446b0b025bea6c829ba3d1cd36c31 Mon Sep 17 00:00:00 2001 From: rick Date: Thu, 9 Sep 2021 14:05:05 +0200 Subject: [PATCH] feat: fold configuration --- vimrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index 8528bdc..d106056 100644 --- a/vimrc +++ b/vimrc @@ -1,4 +1,4 @@ -" source ~/.vim/vimrc.bepo +"source ~/.vim/vimrc.bepo " load plugins " execute pathogen#infect() @@ -39,6 +39,12 @@ set showmatch " highlight matching [{()}] set incsearch " search as characters are entered 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 let g:rainbow_active = 1 let g:doge_doc_standard_c='kernel_doc'