Split vimrc and plugin init

This commit is contained in:
2017-11-10 16:55:05 +01:00
parent 855ab6b1f9
commit 79896d0dd7
2 changed files with 35 additions and 24 deletions

28
plugin_template.vim Normal file
View File

@@ -0,0 +1,28 @@
"Vundle stuff
"{{{
set nocompatible
filetype off
"set rtp+=~/.vim/bundle/Vundle.vim
"
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'tmhedberg/SimpylFold'
Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/syntastic'
Plugin 'vim-scripts/indentpython.vim'
Plugin 'vim-airline/vim-airline'
Plugin 'scrooloose/nerdtree'
Plugin 'tpope/vim-fugitive'
Plugin 'majutsushi/tagbar'
"Plugin 'jmcantrell/vim-virtualenv'
Plugin 'petRUShka/vim-opencl'
call vundle#end()
"}}}
let g:tagbar_ctags_bin = ''
let g:ycm_global_ycm_extra_conf = ''
let g:ycm_python_binary_path = ''
let g:syntastic_python_python_exec = ''