Compare commits

..

No commits in common. "21144360137cd135d2ae952b5982092af3ff2282" and "baf106d5c92f420a2c67dc43114b8b40e5359968" have entirely different histories.

28
zshrc
View File

@ -119,34 +119,6 @@ if (( $+commands[zellij] )); then
}
fi
# exa
if (( $+commands[exa] )); then
# exa explorer
exex() {
local depth=1
local exa_opts=("--color=always" "--git" "--icons" "-F" "-T")
while true; do
clear
exa $exa_opts -L$depth $@
read -sk key
case $key in
h)
(( depth-- ))
[[ $depth -lt 1 ]] && local depth=1
;;
l)
(( depth++ ))
;;
q)
break
;;
esac
done
}
fi
# git
if (( $+commands[git] )); then
git_chpwd_hook() {