Skip to content

Instantly share code, notes, and snippets.

@mdibello
Created August 2, 2018 17:26
Show Gist options
  • Select an option

  • Save mdibello/c4f9254ad9197fb151ed83660dd8172e to your computer and use it in GitHub Desktop.

Select an option

Save mdibello/c4f9254ad9197fb151ed83660dd8172e to your computer and use it in GitHub Desktop.
My default .zshrc file
# Prompts
autoload -Uz colors && colors
autoload -Uz promptinit && promptinit
PROMPT="%n@%{$fg_bold[cyan]%}%m%{$reset_color%}> "
RPROMPT="%{$fg[green]%}%~ %{$fg[yellow]%}[%W %*]%{$reset_color%}"
# Aliases
alias 'ls'='ls --color'
alias 'l'='ls'
alias 'la'='ls -a'
alias 'll'='ls -l'
alias 'lla'='ls -la'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment