ripgrep config
This commit is contained in:
parent
e0b55b5489
commit
b3442eca80
3 changed files with 9 additions and 1 deletions
|
@ -12,6 +12,7 @@ Plug 'ervandew/supertab'
|
||||||
Plug 'fatih/vim-go'
|
Plug 'fatih/vim-go'
|
||||||
Plug 'godlygeek/tabular'
|
Plug 'godlygeek/tabular'
|
||||||
Plug 'hashivim/vim-terraform'
|
Plug 'hashivim/vim-terraform'
|
||||||
|
Plug 'jremmen/vim-ripgrep'
|
||||||
Plug 'junegunn/vim-easy-align'
|
Plug 'junegunn/vim-easy-align'
|
||||||
Plug 'junegunn/fzf'
|
Plug 'junegunn/fzf'
|
||||||
Plug 'junegunn/fzf.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
|
|
5
.ripgreprc
Normal file
5
.ripgreprc
Normal 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
4
.zshrc
|
@ -11,12 +11,14 @@ export PATH=$HOME/bin:$PATH:/bin:/sbin:/usr/sbin:/usr/local/sbin
|
||||||
|
|
||||||
ZSH_THEME="robbyrussell"
|
ZSH_THEME="robbyrussell"
|
||||||
|
|
||||||
|
export RIPGREP_CONFIG_PATH=$HOME/.ripgreprc
|
||||||
|
|
||||||
export HISTFILE=~/.zsh_history
|
export HISTFILE=~/.zsh_history
|
||||||
export SAVEHIST=9000
|
export SAVEHIST=9000
|
||||||
export LPASS_AGENT_TIMEOUT=900
|
export LPASS_AGENT_TIMEOUT=900
|
||||||
|
|
||||||
typeset -A ZSH_HIGHLIGHT_STYLES
|
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[command]='fg=155'
|
||||||
export ZSH_HIGHLIGHT_STYLES[builtin]='fg=190'
|
export ZSH_HIGHLIGHT_STYLES[builtin]='fg=190'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue