Skip to content

Instantly share code, notes, and snippets.

@ryleu
Created October 3, 2022 02:46
Show Gist options
  • Save ryleu/2aef88dbd93664d195fa85f07fa718f7 to your computer and use it in GitHub Desktop.
Save ryleu/2aef88dbd93664d195fa85f07fa718f7 to your computer and use it in GitHub Desktop.
zshrc for ish
STARSHIP_CONFIG="$HOME/.config/starship/config.toml"
# Source global definitions
if [ -f /etc/zshrc ]; then
. /etc/zshrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
alias ls="exa"
alias la="exa -alF"
eval $(starship init zsh)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment