dotfiles/.vimrc.plugins

49 lines
1.4 KiB
Plaintext
Raw Normal View History

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'
2019-02-23 09:15:44 +00:00
Plug 'cespare/vim-toml'
2019-02-24 12:54:41 +00:00
Plug 'Chiel92/vim-autoformat'
Plug 'drmingdrmer/vim-toggle-quickfix'
2019-02-25 15:36:14 +00:00
Plug 'editorconfig/editorconfig-vim'
2019-04-02 21:00:00 +01:00
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
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'
2019-02-25 16:12:27 +00:00
Plug 'jremmen/vim-ripgrep'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
2019-02-22 12:50:25 +00:00
Plug 'junegunn/fzf.vim'
Plug 'kien/ctrlp.vim'
2019-02-25 16:19:30 +00:00
Plug 'leafgarland/typescript-vim'
2019-04-02 21:00:00 +01:00
Plug 'LnL7/vim-nix'
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'
2019-02-25 15:36:14 +00:00
Plug 'ryanolsonx/vim-lsp-javascript'
Plug 'ryanolsonx/vim-lsp-typescript'
2019-02-22 16:08:40 +00:00
Plug 'scrooloose/nerdtree'
2019-02-22 12:50:25 +00:00
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 16:08:40 +00:00
Plug 'Xuyuanp/nerdtree-git-plugin'
2019-02-22 15:50:11 +00:00
2019-02-22 16:08:40 +00:00
call plug#end()