summaryrefslogtreecommitdiffstats
path: root/sh
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-09-23 18:08:53 -0400
committerJesse Luehrs <doy@tozt.net>2018-09-23 18:10:15 -0400
commit494ee57551d759167dee1ebba978d6ef61dfbc0c (patch)
treed56691376f761ca4fbe866aad69782bd027c9aec /sh
parentb6958d6720007a52c7ce2a6d26b45e061c4f3969 (diff)
downloadconf-494ee57551d759167dee1ebba978d6ef61dfbc0c.tar.gz
conf-494ee57551d759167dee1ebba978d6ef61dfbc0c.zip
stop using fd
can't really find any benefits to it
Diffstat (limited to 'sh')
-rw-r--r--sh/aliases2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/aliases b/sh/aliases
index 7a4cc1a..ed4d2e2 100644
--- a/sh/aliases
+++ b/sh/aliases
@@ -30,7 +30,7 @@ alias docs='tmux a -t docs'
alias misc='tmux a -t misc'
# }}}
# other {{{
-alias pm="fd --type f . lib"
+alias pm="find lib -type f"
alias bootstrap_cpanm="curl -Ls http://cpanmin.us/ | perl - App::cpanminus"
alias v="vim --cmd 'let g:startify_disable_at_vimenter = 1' -c 'call feedkeys(\"t\")'"
alias g="vim --cmd 'let g:startify_disable_at_vimenter = 1' -c 'call feedkeys(\"ff\")'"