blob: a748043173c5d89ae23166f43c1e5dce5bee3ec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# zoxide.sh
# Craig Jennings <c@cjennings.net>
# zoxide initialization, sourced by .profile
# Initialize zoxide for zsh
eval "$(zoxide init zsh)"
# Alias cd to use zoxide
alias cd="z"
|