summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index c3c4b13..2f721d6 100644
--- a/.vimrc
+++ b/.vimrc
@@ -182,3 +182,12 @@ let g:localvimrc_sandbox=0
" don't ask before loading
let g:localvimrc_ask=0
" }}}
+" {{{ vim-plug (https://github.com/junegunn/vim-plug)
+call plug#begin('~/.vim/plugged')
+
+" fzf (https://github.com/junegunn/fzf.vim)
+Plug 'junegunn/fzf', { 'do': './install --bin' }
+Plug 'junegunn/fzf.vim'
+
+call plug#end()
+" }}}