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