diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2021-04-26 20:34:52 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2021-04-26 20:34:52 +0200 |
commit | db7a34c39879e6ac2edb6a9db1558efd9d3fdff6 (patch) | |
tree | 10ee44be7b52ea8ae9c90d272bd0ae85cd04f1d7 | |
parent | c28651c2dad0721c3e2afced86dee724c8e39353 (diff) |
Switch to vim-plug
-rw-r--r-- | .vimrc | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -177,6 +177,17 @@ map <Leader>nt :NERDTreeToggle<CR> " {{{ vim-plug (https://github.com/junegunn/vim-plug) call plug#begin('~/.vim/plugged') +Plug 'vim-airline/vim-airline' " status line +Plug 'vim-airline/vim-airline-themes' +Plug 'scrooloose/nerdtree' " NERDTree file browser +Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " Go support +Plug 'rust-lang/rust.vim' " Rust support +Plug 'airblade/vim-gitgutter' " git status gutter +Plug 'tpope/vim-fugitive' " git commands +Plug 'tpope/vim-commentary' " comment out stuff +Plug 'vim-scripts/taglist.vim' +Plug 'joestringer/cscope_maps' " cscope maps + " fzf (https://github.com/junegunn/fzf.vim) Plug 'junegunn/fzf', { 'do': './install --bin' } Plug 'junegunn/fzf.vim' |