2019-02-22 15:50:11 +00:00
|
|
|
" plugins
|
|
|
|
if empty(glob('~/.vim/autoload/plug.vim'))
|
|
|
|
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
|
|
|
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
|
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
|
|
|
endif
|
|
|
|
|
|
|
|
call plug#begin('~/.vim/plugged')
|
|
|
|
|
2018-05-27 23:07:20 +01:00
|
|
|
Plug 'airblade/vim-gitgutter'
|
2018-05-27 22:56:27 +01:00
|
|
|
Plug 'godlygeek/tabular'
|
2019-02-22 12:50:25 +00:00
|
|
|
Plug 'https://github.com/cyplo/vim-colors-solarized.git'
|
|
|
|
Plug 'junegunn/fzf.vim'
|
|
|
|
Plug 'kien/ctrlp.vim'
|
2018-05-27 22:56:27 +01:00
|
|
|
Plug 'mhinz/vim-startify'
|
2019-02-22 12:50:25 +00:00
|
|
|
Plug 'mileszs/ack.vim'
|
|
|
|
Plug 'plasticboy/vim-markdown'
|
2018-05-27 23:07:20 +01:00
|
|
|
Plug 'prabirshrestha/async.vim'
|
|
|
|
Plug 'prabirshrestha/asyncomplete-lsp.vim'
|
2019-02-22 12:50:25 +00:00
|
|
|
Plug 'prabirshrestha/asyncomplete.vim'
|
|
|
|
Plug 'prabirshrestha/vim-lsp'
|
2018-05-27 23:51:05 +01:00
|
|
|
Plug 'roxma/nvim-yarp'
|
|
|
|
Plug 'roxma/vim-hug-neovim-rpc'
|
2019-02-22 12:50:25 +00:00
|
|
|
Plug 'rust-lang/rust.vim'
|
|
|
|
Plug 'timonv/vim-cargo'
|
|
|
|
Plug 'tpope/vim-cucumber'
|
|
|
|
Plug 'tpope/vim-dispatch'
|
|
|
|
Plug 'tpope/vim-fugitive'
|
|
|
|
Plug 'tpope/vim-sensible'
|
|
|
|
Plug 'tpope/vim-surround'
|
|
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
Plug 'vim-airline/vim-airline-themes'
|
|
|
|
Plug 'will133/vim-dirdiff'
|
2019-02-22 15:50:11 +00:00
|
|
|
|
|
|
|
call plug#end()
|