14 lines
337 B
Bash
14 lines
337 B
Bash
# Set environment variables
|
|
export PATH=~/msvc-toolchain/bin/x64:~/.local/bin:$PATH
|
|
export GPG_TTY=$(tty)
|
|
|
|
# Set aliases
|
|
alias ls="eza -lh"
|
|
|
|
# Activate plugins
|
|
source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh
|
|
source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
|
|
|
# Change prompt
|
|
eval "$(starship init zsh)"
|