13 lines
418 B
Bash
13 lines
418 B
Bash
# ~/.zshrc
|
|
|
|
# PROMPT
|
|
source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
|
|
# ALIASES
|
|
[[ ! -f ~/.zsh_aliases ]] || source ~/.zsh_aliases
|
|
|
|
# SYNTAX HIGHLIGHTING
|
|
# The following line MUST be at the end of this file!
|
|
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|