37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
" 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')
|
|
|
|
Plug 'airblade/vim-gitgutter'
|
|
Plug 'godlygeek/tabular'
|
|
Plug 'https://github.com/cyplo/vim-colors-solarized.git'
|
|
Plug 'junegunn/fzf.vim'
|
|
Plug 'kien/ctrlp.vim'
|
|
Plug 'mhinz/vim-startify'
|
|
Plug 'mileszs/ack.vim'
|
|
Plug 'plasticboy/vim-markdown'
|
|
Plug 'prabirshrestha/async.vim'
|
|
Plug 'prabirshrestha/asyncomplete-lsp.vim'
|
|
Plug 'prabirshrestha/asyncomplete.vim'
|
|
Plug 'prabirshrestha/vim-lsp'
|
|
Plug 'roxma/nvim-yarp'
|
|
Plug 'roxma/vim-hug-neovim-rpc'
|
|
Plug 'rust-lang/rust.vim'
|
|
Plug 'scrooloose/nerdtree'
|
|
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'
|
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
|
|
|
call plug#end()
|