Created
August 2, 2018 17:26
-
-
Save mdibello/c4f9254ad9197fb151ed83660dd8172e to your computer and use it in GitHub Desktop.
My default .zshrc file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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