Switching to Pathogen

This commit is contained in:
Alex Yatskov 2016-06-28 21:23:36 -07:00
parent 1c625b42a3
commit a184f231a6
5 changed files with 24 additions and 2311 deletions

File diff suppressed because it is too large Load Diff

17
.vim/install.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
# YouCompleteMe
pushd ./bundle/YouCompleteMe
git submodule update --init --recursive
./install.py
popd
# tern_for_vim
pushd ./bundle/tern_for_vim
sudo npm install -g tern
npm install
popd
# syntastic
sudo npm -g install eslint
sudo pip install pyflakes

View File

@ -59,7 +59,3 @@ noremap <silent> <Leader>fs :FSHere<Cr>
" vim-latex
nnoremap <C-i> <Plug>IMAP_JumpForward
" open-browser.vim
nmap <Leader>o <Plug>(openbrowser-smart-search)
vmap <Leader>o <Plug>(openbrowser-smart-search)

View File

@ -1,5 +1,12 @@
set nocompatible
if &shell =~ 'bin/fish'
set shell=/bin/sh
endif
runtime bundle/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect()
filetype indent plugin on
colorscheme molokai
syntax enable
@ -52,7 +59,3 @@ if has('gui_running')
set guioptions-=m
set guioptions-=r
endif
if &shell =~ 'bin/fish'
set shell=/bin/sh
endif

View File

@ -1,57 +1,6 @@
call plug#begin('~/.vim/plugged')
Plug 'https://github.com/FooSoft/vim-argwrap.git'
Plug 'https://github.com/airblade/vim-gitgutter.git'
Plug 'https://github.com/antoyo/vim-licenses.git'
Plug 'https://github.com/b4winckler/vim-angry.git'
Plug 'https://github.com/bkad/CamelCaseMotion'
Plug 'https://github.com/cespare/vim-toml.git'
Plug 'https://github.com/christoomey/vim-sort-motion.git'
Plug 'https://github.com/ctrlpvim/ctrlp.vim.git'
Plug 'https://github.com/derekwyatt/vim-fswitch.git'
Plug 'https://github.com/dhruvasagar/vim-table-mode.git'
Plug 'https://github.com/fatih/vim-go.git'
Plug 'https://github.com/junegunn/vim-easy-align.git'
Plug 'https://github.com/mattn/emmet-vim.git'
Plug 'https://github.com/michaeljsmith/vim-indent-object.git'
Plug 'https://github.com/moll/vim-bbye.git'
Plug 'https://github.com/nathanaelkane/vim-indent-guides.git'
Plug 'https://github.com/ntpeters/vim-better-whitespace.git'
Plug 'https://github.com/othree/html5.vim.git'
Plug 'https://github.com/pangloss/vim-javascript.git'
Plug 'https://github.com/plasticboy/vim-markdown.git'
Plug 'https://github.com/rking/ag.vim.git'
Plug 'https://github.com/schickling/vim-bufonly.git'
Plug 'https://github.com/tomasr/molokai.git'
Plug 'https://github.com/tpope/vim-abolish.git'
Plug 'https://github.com/tpope/vim-commentary.git'
Plug 'https://github.com/tpope/vim-eunuch.git'
Plug 'https://github.com/tpope/vim-fugitive.git'
Plug 'https://github.com/tpope/vim-repeat'
Plug 'https://github.com/tpope/vim-speeddating.git'
Plug 'https://github.com/tpope/vim-surround'
Plug 'https://github.com/tpope/vim-unimpaired.git'
Plug 'https://github.com/tpope/vim-vinegar.git'
Plug 'https://github.com/tyru/open-browser.vim.git'
Plug 'https://github.com/vasconcelloslf/vim-interestingwords.git'
Plug 'https://github.com/vim-airline/vim-airline-themes.git'
Plug 'https://github.com/vim-airline/vim-airline.git'
Plug 'https://github.com/vim-latex/vim-latex.git'
if has('unix')
Plug 'https://github.com/Valloric/YouCompleteMe.git', { 'do': './install.sh' }
Plug 'https://github.com/marijnh/tern_for_vim', { 'do': 'sudo npm install -g tern; npm install' }
Plug 'https://github.com/scrooloose/syntastic.git', { 'do': 'sudo npm -g install eslint; sudo pip install --upgrade pyflakes' }
endif
call plug#end()
" ag.vim
let g:ag_working_path_mode="r"
" CamelCaseMotion
call camelcasemotion#CreateMotionMappings('<leader>')
" ctrlp.vim
let g:ctrlp_cmd = 'CtrlPMixed'
let g:ctrlp_working_path_mode = 'ra'
@ -78,9 +27,6 @@ let g:go_fmt_command = 'goimports'
let g:licenses_authors_name = 'Alex Yatskov <alex@foosoft.net>'
let g:licenses_copyright_holders_name = g:licenses_authors_name
" vim-table-mode
let g:table_mode_corner = '|'
" YouCompleteMe
let g:ycm_check_if_ycm_core_present = 0
let g:ycm_confirm_extra_conf = 0