diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 6afd5ce..4a4446c 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -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' diff --git a/.ripgreprc b/.ripgreprc new file mode 100644 index 0000000..a4d8810 --- /dev/null +++ b/.ripgreprc @@ -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 diff --git a/.zshrc b/.zshrc index 54c0d0f..f29ac66 100644 --- a/.zshrc +++ b/.zshrc @@ -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'