diff options
Diffstat (limited to '.bashrc')
-rw-r--r-- | .bashrc | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -7,6 +7,7 @@ export EDITOR="vim" # keep dictionaries in ~/bin/ export STARDICT_DATA_DIR="$HOME/bin/dict/" export NOTES_DIR="$HOME/notes" +export NOTES="$HOME/notes/inbox.txt" export TERM="screen-256color" export GREP_COLOR='mt=00;38;5;166' export CM_HISTLENGTH=50 @@ -147,10 +148,6 @@ function f() { ${EDITOR:-vim} "$(rg -l $1 ${2:-.} | fzf --preview="bat {}" --preview-window=right:70%:wrap)"; } -function fg(){ - ${EDITOR:-vim} "$(grep -nr $1 ${2:-.} | fzf --preview="bat {}" --preview-window=right:70%:wrap)"; -} - #fuzzy find file names only function ff() { |