local settings into separate file
This commit is contained in:
3
.vimrc
3
.vimrc
@@ -2,8 +2,10 @@
|
||||
"{{{
|
||||
if has("win32")
|
||||
source $HOME/vimfiles/plugins.vim
|
||||
source $HOME/vimfiles/locals.vim
|
||||
else
|
||||
source $HOME/.vim/plugins.vim
|
||||
source $HOME/.vim/locals.vim
|
||||
endif
|
||||
"}}}
|
||||
|
||||
@@ -35,7 +37,6 @@ set laststatus=2
|
||||
|
||||
"Gui stuff
|
||||
"{{{
|
||||
set guifont=Consolas:h12
|
||||
set guicursor=n-v-i-c:block-Cursor
|
||||
set guicursor+=n-v-i-c:blinkon0
|
||||
set guioptions-=e
|
||||
|
||||
1
local_template.vim
Normal file
1
local_template.vim
Normal file
@@ -0,0 +1 @@
|
||||
set guifont=Consolas:h12
|
||||
@@ -3,26 +3,30 @@
|
||||
set nocompatible
|
||||
filetype off
|
||||
|
||||
"set rtp+=~/.vim/bundle/Vundle.vim
|
||||
"
|
||||
"Unix
|
||||
set rtp+=$HOME/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
|
||||
"Win
|
||||
"set rtp+=$HOME/vimfiles/bundle/Vundle.vim
|
||||
"call vundle#begin('$HOME/vimfiles/bundle/')
|
||||
|
||||
Plugin 'VundleVim/Vundle.vim'
|
||||
Plugin 'tmhedberg/SimpylFold'
|
||||
Plugin 'Valloric/YouCompleteMe'
|
||||
Plugin 'scrooloose/syntastic'
|
||||
Plugin 'vim-scripts/indentpython.vim'
|
||||
Plugin 'vim-airline/vim-airline'
|
||||
"Plugin 'vim-airline/vim-airline'
|
||||
Plugin 'scrooloose/nerdtree'
|
||||
Plugin 'tpope/vim-fugitive'
|
||||
Plugin 'majutsushi/tagbar'
|
||||
"Plugin 'jmcantrell/vim-virtualenv'
|
||||
Plugin 'petRUShka/vim-opencl'
|
||||
"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 = ''
|
||||
"let g:tagbar_ctags_bin = ''
|
||||
"let g:ycm_global_ycm_extra_conf = ''
|
||||
"let g:ycm_python_binary_path = ''
|
||||
"let g:syntastic_python_python_exec = ''
|
||||
|
||||
Reference in New Issue
Block a user