plugin: Add auto foldcolumn setting
authorStefan Huber <shuber@sthu.org>
Thu, 17 Dec 2020 07:50:22 +0000 (08:50 +0100)
committerStefan Huber <shuber@sthu.org>
Thu, 17 Dec 2020 07:50:22 +0000 (08:50 +0100)
init.vim
plugins.vim

index d38072627a1458dc24fbe6335d3e8f4a168a2acb..bd9cfe3f8ff5fe154513dd300dec626bf232a24b 100644 (file)
--- a/init.vim
+++ b/init.vim
@@ -31,6 +31,7 @@ set smartindent
 set incsearch
 set hlsearch
 
 set incsearch
 set hlsearch
 
+set foldcolumn=4
 set colorcolumn=+1
 set mouse=a
 set wildmenu
 set colorcolumn=+1
 set mouse=a
 set wildmenu
@@ -165,6 +166,11 @@ au BufEnter *.cpp,*.cc,*.cxx let b:fswitchdst='h,hxx,hpp,hh'
 au BufEnter *.h,*.hh,*.hxx let b:fswitchdst='cc,c,cxx,cpp'
 au BufNewFile *.{h,hpp,hxx} call AddIncludeGuards()
 
 au BufEnter *.h,*.hh,*.hxx let b:fswitchdst='cc,c,cxx,cpp'
 au BufNewFile *.{h,hpp,hxx} call AddIncludeGuards()
 
+augroup autofoldcolumn
+  au!
+  au CursorHold,BufWinEnter * AutoOrigamiFoldColumn
+augroup END
+
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " Some plugin-specific settings
 
 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 " Some plugin-specific settings
 
index b082c81161076579032532c97385ad9f57831595..88df54de46bda8d3db221e51b3edcdb89b197ece 100644 (file)
@@ -15,6 +15,8 @@ Plug 'mhinz/vim-signify'
 Plug 'tpope/vim-fugitive'
 Plug 'airblade/vim-rooter'
 
 Plug 'tpope/vim-fugitive'
 Plug 'airblade/vim-rooter'
 
+Plug 'benknoble/vim-auto-origami'
+
 Plug 'ctrlpvim/ctrlp.vim'
 
 Plug 'scrooloose/nerdcommenter'
 Plug 'ctrlpvim/ctrlp.vim'
 
 Plug 'scrooloose/nerdcommenter'