Switch from vundle to vim-plug
This commit is contained in:
parent
21f824e4d3
commit
b3453887cd
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
||||||
vim/.netrwhist
|
vim/.netrwhist
|
||||||
vim/bundle/*
|
vim/bundle/*
|
||||||
!vim/bundle/Vundle.vim
|
vim/plugged/*
|
||||||
*.pyc
|
|
||||||
config/openbox/lxde-rc.xml
|
config/openbox/lxde-rc.xml
|
||||||
|
*.pyc
|
||||||
|
|
2074
vim/autoload/plug.vim
Normal file
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
47
vimrc
|
@ -7,38 +7,33 @@ filetype off
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" PLUGINS
|
" PLUGINS
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" set the runtime path to include Vundle and initialize
|
call plug#begin('~/.vim/plugged')
|
||||||
set rtp+=~/.vim/bundle/Vundle.vim
|
|
||||||
call vundle#begin()
|
|
||||||
|
|
||||||
" Let Vundle manage itself.
|
Plug 'mattn/webapi-vim' " Required by gist-vim
|
||||||
Plugin 'VundleVim/Vundle.vim'
|
Plug 'mattn/gist-vim'
|
||||||
|
Plug 'bling/vim-airline'
|
||||||
Plugin 'mattn/webapi-vim' " Required by gist-vim
|
Plug 'tpope/vim-obsession'
|
||||||
Plugin 'mattn/gist-vim'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plugin 'bling/vim-airline'
|
Plug 'tpope/vim-classpath'
|
||||||
Plugin 'tpope/vim-obsession'
|
Plug 'rking/ag.vim'
|
||||||
Plugin 'tpope/vim-fugitive'
|
"Plug 'christoomey/vim-tmux-navigator'
|
||||||
Plugin 'tpope/vim-classpath'
|
|
||||||
Plugin 'rking/ag.vim'
|
|
||||||
"Plugin 'christoomey/vim-tmux-navigator'
|
|
||||||
|
|
||||||
" Colors
|
" Colors
|
||||||
Plugin 'reedes/vim-colors-pencil'
|
Plug 'reedes/vim-colors-pencil'
|
||||||
Plugin 'nanotech/jellybeans.vim'
|
Plug 'nanotech/jellybeans.vim'
|
||||||
Plugin 'sickill/vim-monokai'
|
Plug 'sickill/vim-monokai'
|
||||||
Plugin 'elixir-lang/vim-elixir'
|
Plug 'elixir-lang/vim-elixir'
|
||||||
Plugin 'chmllr/elrodeo-colorscheme'
|
Plug 'chmllr/elrodeo-colorscheme'
|
||||||
Plugin 'altercation/vim-colors-solarized'
|
Plug 'altercation/vim-colors-solarized'
|
||||||
|
|
||||||
" Clojure
|
" Clojure
|
||||||
Plugin 'kien/rainbow_parentheses.vim'
|
Plug 'kien/rainbow_parentheses.vim'
|
||||||
Plugin 'guns/vim-clojure-highlight'
|
Plug 'guns/vim-clojure-highlight'
|
||||||
Plugin 'guns/vim-clojure-static'
|
Plug 'guns/vim-clojure-static'
|
||||||
Plugin 'tpope/vim-fireplace'
|
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
|
filetype plugin indent on
|
||||||
|
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user