add ripgrep

This commit is contained in:
Felix Van der Jeugt 2016-09-29 15:14:48 +02:00
parent cc9ed46407
commit 1d19ea2bca
2 changed files with 4 additions and 4 deletions

View File

@ -121,7 +121,7 @@ highlight LineNr ctermfg=08 ctermbg=NONE
nnoremap <Leader>g :Grepper<CR>
let g:grepper={
\ 'tools': ['git', 'grep'],
\ 'tools': ['git', 'rg', 'grep'],
\ 'open': 1,
\ 'jump': 0,
\ }

View File

@ -9,10 +9,10 @@ mkdir -p "$XDG_RUNTIME_DIR"
chmod 0700 "$XDG_RUNTIME_DIR"
# Local scripts
export PATH="$HOME/.local/bin":"$PATH"
export PATH="$HOME/.cabal/bin":"$PATH"
export PATH="$(ruby -rubygems -e "puts Gem.user_dir")/bin":"$PATH"
export GEM_HOME="$(ruby -e 'puts Gem.user_dir')"
export CABAL_HOME="$HOME/.cabal"
export CARGO_HOME="$HOME/.cargo"
export PATH="$HOME/.local/bin:$CABAL_HOME/bin:$GEM_HOME/bin:$CARGO_HOME/bin:$PATH"
# For vim
export EDITOR="nvim"