This commit is contained in:
Sonny 2017-05-17 11:18:57 +02:00
parent 76b96728c8
commit 226a91e5a6

View file

@ -5,6 +5,7 @@ Plug 'https://github.com/vim-airline/vim-airline'
Plug 'https://github.com/vim-airline/vim-airline-themes'
Plug 'https://github.com/powerline/fonts'
Plug 'https://github.com/tpope/vim-fugitive'
Plug 'https://github.com/Yggdroot/indentLine'
"Indent automiatically depending on filetype
filetype plugin on
@ -17,11 +18,12 @@ syntax enable
" Create the `tags` file (may need to install ctags first)
command! MakeTags !ctags -R .
" Tab indentation
" 4 spaces instead of tabs indentation
set shiftwidth=4 tabstop=4 softtabstop=4 expandtab
"End IDE specific options
"<-------------------------------------------------------------------------->
" Fold methods based on indents
" zo to open folds, zc to close
set foldmethod=indent
" FINDING FILES