1
0

update config

This commit is contained in:
valeth 2015-03-14 14:19:13 +01:00
parent 234ef1feb5
commit a8c31b145b
16 changed files with 19 additions and 30 deletions

24
.gitmodules vendored
View File

@ -1,24 +0,0 @@
[submodule "bundle/easymotion"]
path = bundle/easymotion
url = https://github.com/Lokaltog/vim-easymotion.git
[submodule "bundle/fugitive"]
path = bundle/fugitive
url = https://github.com/tpope/vim-fugitive.git
[submodule "bundle/latexsuite"]
path = bundle/latexsuite
url = git://git.code.sf.net/p/vim-latex/vim-latex
[submodule "bundle/quickrun"]
path = bundle/quickrun
url = https://github.com/thinca/vim-quickrun.git
[submodule "bundle/solarized"]
path = bundle/solarized
url = https://github.com/altercation/vim-colors-solarized.git
[submodule "bundle/surround"]
path = bundle/surround
url = https://github.com/tpope/vim-surround.git
[submodule "bundle/tabular"]
path = bundle/tabular
url = https://github.com/godlygeek/tabular.git
[submodule "bundle/colorscheme-kalisi"]
path = bundle/colorscheme-kalisi
url = https://github.com/freeo/vim-kalisi

18
config/core/plugins.vim Normal file
View File

@ -0,0 +1,18 @@
call plug#begin($vim_configdir . '/plugins')
" Always load
Plug 'tomasr/molokai'
Plug 'scrooloose/nerdcommenter'
Plug 'scrooloose/syntastic'
Plug 'jiangmiao/auto-pairs'
" Load on demand
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'scrooloose/nerdtree-git-plugin', { 'on': 'NERDTreeToggle' }
Plug 'vim-scripts/Gundo', { 'on': 'GundoToggle' }
Plug 'vim-scripts/gnupg', { 'for': ['gpg', 'asc'] }
Plug 'Valloric/YouCompleteMe', { 'do': './install.sh --clang-completer --system-libclang' }
Plug 'kien/ctrlp.vim', { 'on': 'CtrlP' }
Plug 'majutsushi/tagbar', { 'on': 'TagbarToggle' }
call plug#end()

7
vimrc
View File

@ -5,10 +5,5 @@
" "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"runtime bundle/unbundle/unbundle.vim
runtime bundle/pathogen/autoload/pathogen.vim
execute pathogen#infect()
runtime! config/core/**/*.vim
runtime! config/bundle/**/*.vim
runtime! config/plugins/**/*.vim