This commit is contained in:
Anthony Cicchetti 2020-10-18 22:17:37 -04:00
parent 68747f19e2
commit aa3e41050a
2 changed files with 11 additions and 0 deletions

View file

@ -104,3 +104,10 @@
creates: ~/.cargo/bin/silicon
when:
- rust_extras == true
- name: Install zoxide
shell: ~/.cargo/bin/cargo install zoxide
args:
creates: ~/.cargo/bin/zoxide
when:
- rust_extras == true

4
zsh/funcs/zoxide Normal file
View file

@ -0,0 +1,4 @@
if [[ -x ~/.cargo/bin/zoxide ]]; then
eval "$(zoxide init zsh)"
alias cd='z'
fi