Created
January 10, 2024 06:41
-
-
Save AndrewLester/fb5e0487bb3c0bdafe01535cf0578e97 to your computer and use it in GitHub Desktop.
zsh stuff
This file contains 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
local user='%{$fg[magenta]%}%n%{$reset_color%}' | |
local pwd='%{$fg[cyan]%}%~%{$reset_color%}' | |
local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})' | |
local git_branch='$(git_prompt_status)%{$reset_color%}$(git_prompt_info)%{$reset_color%}' | |
ZSH_THEME_RVM_PROMPT_OPTIONS="i v g" | |
ZSH_THEME_GIT_PROMPT_PREFIX="(%{$fg[green]%}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%})" | |
ZSH_THEME_GIT_PROMPT_DIRTY="" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" | |
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" | |
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" | |
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" | |
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" | |
ZSH_THEME_RUBY_PROMPT_PREFIX="%{$fg[green]%}‹" | |
ZSH_THEME_RUBY_PROMPT_SUFFIX="›%{$reset_color%}" | |
PROMPT="${user} ${pwd}${git_branch}$ " | |
# RPROMPT="${return_code} ${git_branch} \$(ruby_prompt_info)" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment