19 lines
385 B
Bash
19 lines
385 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"
|
||
|
|
||
|
pfetch
|