Created
October 3, 2022 02:46
-
-
Save ryleu/2aef88dbd93664d195fa85f07fa718f7 to your computer and use it in GitHub Desktop.
zshrc for ish
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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