about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-03-07T16·46+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-03-07T16·46+0000
commitaa7b96bacd8c6e0bef0493697a75474754fda96a (patch)
treee226841d28cb300c63c060d65220b192e82fd0fa /configs
parentfe6f2b96976122609b6d16da764d831bffde421d (diff)
Prefer to rg and fd hidden files
These may be configurable via .rgrc or .fdrc files, but frankly I have
enough RC files floating around. This should be fine.
Diffstat (limited to 'configs')
-rw-r--r--configs/shared/zsh/aliases.zsh2
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/shared/zsh/aliases.zsh b/configs/shared/zsh/aliases.zsh
index 71e2d670a387..121cd06dd4b7 100644
--- a/configs/shared/zsh/aliases.zsh
+++ b/configs/shared/zsh/aliases.zsh
@@ -61,6 +61,8 @@ alias links='find ~ -maxdepth 1 -type l -exec exa {} \;' # list all of the links
 alias ra=ranger
 alias chrome=google-chrome
 alias btctl=bluetoothctl
+alias rg='rg --hidden' # By default, rg skips hidden files
+alias fd='fd --hidden' # By default, rg skips hidden files
 
 # couple the e* aliases to the <leader>e* kbds in vim
 alias ev='e ~/.config/nvim/init.vim'