Skip to content

Instantly share code, notes, and snippets.

@jakecraige
Forked from junegunn/vimrc
Last active November 27, 2017 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakecraige/6bc72778abd1210c43ac23b373332021 to your computer and use it in GitHub Desktop.
Save jakecraige/6bc72778abd1210c43ac23b373332021 to your computer and use it in GitHub Desktop.
set nocompatible hidden laststatus=2
if !filereadable('/tmp/plug.vim')
silent !curl --insecure -fLo /tmp/plug.vim
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
endif
source /tmp/plug.vim
call plug#begin('/tmp/plugged')
Plug 'junegunn/fzf', { 'do': './install --bin' }
Plug 'junegunn/fzf.vim'
call plug#end()
autocmd VimEnter * PlugClean! | PlugUpdate --sync
command! -bang -nargs=* Ag call fzf#vim#ag(<q-args>, '--color-path "32" --color-match "3;34;40"', <bang>0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment