43 lines
908 B
Plaintext
43 lines
908 B
Plaintext
set nocompatible
|
|
|
|
"Vundle stuff
|
|
"{{{
|
|
filetype off
|
|
|
|
"Unix
|
|
set rtp+=$HOME/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
|
|
"Win32
|
|
"set rtp+=$HOME/vimfiles/bundle/Vundle.vim/
|
|
"call vundle#begin($HOME/vimfiles/bundle/)
|
|
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
"Plugin 'Valloric/YouCompleteMe'
|
|
Plugin 'tmhedberg/SimpylFold'
|
|
Plugin 'scrooloose/syntastic'
|
|
Plugin 'vim-scripts/indentpython.vim'
|
|
Plugin 'scrooloose/nerdtree'
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'tpope/vim-eunuch'
|
|
Plugin 'majutsushi/tagbar'
|
|
" Plugin 'mattn/emmet-vim'
|
|
" Plugin 'lepture/vim-jinja'
|
|
|
|
call vundle#end()
|
|
"}}}
|
|
|
|
"Path variables for Plugins
|
|
"{{{
|
|
"let g:tagbar_ctags_bin = '/usr/local/bin/ctags'
|
|
"let g:ycm_global_ycm_extra_conf = '~/.ycm_global_extra_config.py'
|
|
"let g:ycm_python_binary_path = '/usr/local/bin/python'
|
|
"let g:syntastic_python_python_exec = '/usr/local/bin/python'
|
|
"}}}
|
|
|
|
"Local settings
|
|
"{{{
|
|
set guifont=Consolas:h12
|
|
colorscheme snowhite
|
|
"}}}
|