Browse Source

Add fzf plug

pull/4/head
Ein Verne 5 years ago
parent
commit
1b5d3db32f
  1. 3
      .vim/startup/vundle_vimrc
  2. 6
      .zshrc

3
.vim/startup/vundle_vimrc

@ -22,7 +22,7 @@ endif
" If you need Vim help for vim-plug itself (e.g. :help plug-options), register
" vim-plug as a plugin.
Plug 'junegunn/vim-plug'
Plug 'tpope/vim-fugitive'
"Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-surround'
" Plugin 'vim-perl/vim-perl'
@ -66,6 +66,7 @@ Plug 'tomtom/tlib_vim'
Plug 'garbas/vim-snipmate'
Plug 'ntpeters/vim-better-whitespace'
Plug '907th/vim-auto-save'
Plug 'junegunn/fzf.vim'
" Git plugin not hosted on GitHub
Plug 'git://git.wincent.com/command-t.git'

6
.zshrc

@ -263,7 +263,7 @@ export LC_ALL=en_US.UTF-8
alias tmux="TERM=screen-256color tmux -2"
alias vi="vim"
alias mux="TERM=screen-256color tmuxinator"
alias ls="ls -alh"
#alias ls="ls -alh"
alias cp="cp -i"
alias df="df -h"
alias free="free -m"
@ -293,3 +293,7 @@ SPACESHIP_DIR_COLOR="${SPACESHIP_DIR_COLOR="cyan"}"
# usage adb-screencap > screen.png
alias adbcap="adb shell screencap -p"
# fzf config
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export FZF_DEFAULT_COMMAND='ag -g ""'
export FZF_DEFAULT_OPTS="--reverse --inline-info"

Loading…
Cancel
Save