Last active
September 30, 2024 15:26
-
-
Save cloudnull/4cc7890acaae6cb809e811e09e9eaade to your computer and use it in GitHub Desktop.
Solus zsh theme for oh-my-zsh
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
# ZSH Theme - Based on Bira, influenced by Solus. | |
if [[ $UID -eq 0 ]]; then | |
local user_symbol='%F{196}#%f' | |
else | |
local user_symbol='%F{214}$%f' | |
fi | |
local return_code="%(?..%F{196}%? ↵%f)" | |
local user_host='%F{81}%n%f%F{245}@%F{206}%m%f ' | |
local current_dir='%F{245}%~ %b%f' | |
local git_branch='$(git_prompt_info)' | |
local rvm_ruby='$(ruby_prompt_info)' | |
local venv_prompt='$(virtualenv_prompt_info)' | |
ZSH_THEME_RVM_PROMPT_OPTIONS="i v g" | |
PROMPT="╭─${user_host}${current_dir}${rvm_ruby}${git_branch} | |
╰─➤ ${venv_prompt} ${user_symbol} " | |
RPROMPT="${return_code}" | |
ZSH_THEME_GIT_PROMPT_PREFIX="%F{220}% ‹" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="›%f" | |
ZSH_THEME_RUBY_PROMPT_PREFIX="%F{154}% (" | |
ZSH_THEME_RUBY_PROMPT_SUFFIX=")%f" | |
ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX="%F{202}% (" | |
ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX=")%f" | |
ZSH_THEME_VIRTUALENV_PREFIX=$ZSH_THEME_VIRTUAL_ENV_PROMPT_PREFIX | |
ZSH_THEME_VIRTUALENV_SUFFIX=$ZSH_THEME_VIRTUAL_ENV_PROMPT_SUFFIX |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment