Last active
May 10, 2018 22:39
-
-
Save zanedeg/1da812514eb8cdd84217 to your computer and use it in GitHub Desktop.
Custom oh-my-zsh theme
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
# font: https://github.com/tonsky/FiraCode | |
# theme: Base16 Eighties | |
local usr='%F{grey}%n%f' | |
local dir='%F{blue}%~%f' | |
local git='$(git_prompt_info)%f' | |
PROMPT="╭─ ${usr} ${dir} ${git} | |
╰─%B$%b " | |
ZSH_THEME_GIT_PROMPT_PREFIX="%F{magenta} " | |
ZSH_THEME_GIT_PROMPT_SUFFIX="$f" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%b%F{yellow} ±" | |
ZSH_THEME_GIT_PROMPT_CLEAN="%b%F{green} ✔" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment