My personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: added zoxide to zsh

+6
+6
zsh/.zshrc
··· 6 6 # Use eza as ls 7 7 alias ls="eza -laG" 8 8 9 + # Use zoxide as cd 10 + alias cd="z" 11 + 9 12 # -- Prompt -- 10 13 11 14 # Only last two folders show 12 15 PROMPT='%B%F{10}%2~ %f%b%(!.#.>) ' 16 + 17 + # -- Applications 18 + eval "$(zoxide init zsh)"