24 lines
476 B
Bash
24 lines
476 B
Bash
# Use powerline
|
|
USE_POWERLINE="true"
|
|
# Source manjaro-zsh-configuration
|
|
if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then
|
|
source /usr/share/zsh/manjaro-zsh-config
|
|
fi
|
|
# Use manjaro zsh prompt
|
|
if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then
|
|
source /usr/share/zsh/manjaro-zsh-prompt
|
|
fi
|
|
|
|
|
|
alias cp="cp -i"
|
|
alias more="less"
|
|
alias weather="curl wttr.in"
|
|
alias ll="ls -la"
|
|
|
|
export PATH=/home/clint/.scripts/:$PATH
|
|
|
|
export TERMINAL=alacritty
|
|
export BROWSER=firefox
|
|
|
|
pfetch
|