Switch from vundle to vim-plug

This commit is contained in:
Michael Campagnaro 2015-11-29 14:41:56 -05:00
parent 21f824e4d3
commit b3453887cd
4 changed files with 2097 additions and 29 deletions

4
.gitignore vendored
View File

@ -1,5 +1,5 @@
vim/.netrwhist
vim/bundle/*
!vim/bundle/Vundle.vim
*.pyc
vim/plugged/*
config/openbox/lxde-rc.xml
*.pyc

2074
vim/autoload/plug.vim Normal file

File diff suppressed because it is too large Load Diff

@ -1 +0,0 @@
Subproject commit 5f70ae6025e951f0154e3940d123138adffa4c88

47
vimrc
View File

@ -7,38 +7,33 @@ filetype off
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" PLUGINS
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
call plug#begin('~/.vim/plugged')
" Let Vundle manage itself.
Plugin 'VundleVim/Vundle.vim'
Plugin 'mattn/webapi-vim' " Required by gist-vim
Plugin 'mattn/gist-vim'
Plugin 'bling/vim-airline'
Plugin 'tpope/vim-obsession'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-classpath'
Plugin 'rking/ag.vim'
"Plugin 'christoomey/vim-tmux-navigator'
Plug 'mattn/webapi-vim' " Required by gist-vim
Plug 'mattn/gist-vim'
Plug 'bling/vim-airline'
Plug 'tpope/vim-obsession'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-classpath'
Plug 'rking/ag.vim'
"Plug 'christoomey/vim-tmux-navigator'
" Colors
Plugin 'reedes/vim-colors-pencil'
Plugin 'nanotech/jellybeans.vim'
Plugin 'sickill/vim-monokai'
Plugin 'elixir-lang/vim-elixir'
Plugin 'chmllr/elrodeo-colorscheme'
Plugin 'altercation/vim-colors-solarized'
Plug 'reedes/vim-colors-pencil'
Plug 'nanotech/jellybeans.vim'
Plug 'sickill/vim-monokai'
Plug 'elixir-lang/vim-elixir'
Plug 'chmllr/elrodeo-colorscheme'
Plug 'altercation/vim-colors-solarized'
" Clojure
Plugin 'kien/rainbow_parentheses.vim'
Plugin 'guns/vim-clojure-highlight'
Plugin 'guns/vim-clojure-static'
Plugin 'tpope/vim-fireplace'
Plug 'kien/rainbow_parentheses.vim'
Plug 'guns/vim-clojure-highlight'
Plug 'guns/vim-clojure-static'
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
call plug#end()
" All of your Plugins must be added before the following line
call vundle#end()
filetype plugin indent on
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""