ripgrep config

This commit is contained in:
Daniel Lundin 2018-04-07 14:21:22 +02:00
parent e0b55b5489
commit b3442eca80
3 changed files with 9 additions and 1 deletions

View file

@ -12,6 +12,7 @@ Plug 'ervandew/supertab'
Plug 'fatih/vim-go'
Plug 'godlygeek/tabular'
Plug 'hashivim/vim-terraform'
Plug 'jremmen/vim-ripgrep'
Plug 'junegunn/vim-easy-align'
Plug 'junegunn/fzf'
Plug 'junegunn/fzf.vim'

5
.ripgreprc Normal file
View file

@ -0,0 +1,5 @@
--colors=path:fg:100,150,210
--colors=match:style:nobold
--colors=match:bg:180,150,40
--colors=match:fg:0,0,0
--max-columns=150

4
.zshrc
View file

@ -11,12 +11,14 @@ export PATH=$HOME/bin:$PATH:/bin:/sbin:/usr/sbin:/usr/local/sbin
ZSH_THEME="robbyrussell"
export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc
export HISTFILE=~/.zsh_history
export SAVEHIST=9000
export LPASS_AGENT_TIMEOUT=900
typeset -A ZSH_HIGHLIGHT_STYLES
export ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
export ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
export ZSH_HIGHLIGHT_STYLES[command]='fg=155'
export ZSH_HIGHLIGHT_STYLES[builtin]='fg=190'