Last active
May 4, 2021 05:50
-
-
Save wizo06/9232945d921939e37f2598002672e6b0 to your computer and use it in GitHub Desktop.
My personal oh-my-zsh theme
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
local date='%F{008}%D{%Y.%m.%d}%f' | |
local time='%F{008}%*%f' | |
local timezone='%F{008}%D{%Z}%f' | |
local user='%B%F{129}%n%f%b' | |
local machine='%B%F{045}%m%f%b' | |
local current_dir='%B%F{147}%~%f%b' | |
local git_info='%B$(git_prompt_info)%b' | |
PROMPT="${user}@${machine} in ${current_dir} ${git_info} | |
%F{015}$%f " | |
RPROMPT="${date}|${time}|${timezone}" | |
ZSH_THEME_GIT_PROMPT_PREFIX="on %F{111}" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%f" | |
ZSH_THEME_GIT_PROMPT_DIRTY=" %F{001}●%f" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment