mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	Added New Theme: sonicradish (256 colors)
Forked from muse theme and inspired by mustang vim theme Dark Background and Solarized Dark look great [ tested on OS X ] Screenshot: https://img.skitch.com/20120221-eb1cxey5aun84tb1ak7fm376k.png muse: https://github.com/robbyrussell/oh-my-zsh/blob/master/themes/muse.zsh-theme mustang: http://hcalves.deviantart.com/art/Mustang-Vim-Colorscheme-98974484http://hcalves.deviantart.com/art/Mustang-Vim-Colorscheme-98974484
This commit is contained in:
		
							
								
								
									
										39
									
								
								themes/sonicradish.zsh-theme
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								themes/sonicradish.zsh-theme
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,39 @@
 | 
			
		||||
#!/usr/bin/env zsh 
 | 
			
		||||
#local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
 | 
			
		||||
 | 
			
		||||
setopt promptsubst
 | 
			
		||||
 | 
			
		||||
autoload -U add-zsh-hook
 | 
			
		||||
ROOT_ICON_COLOR=$FG[111]
 | 
			
		||||
MACHINE_NAME_COLOR=$FG[208]
 | 
			
		||||
PROMPT_SUCCESS_COLOR=$FG[103]
 | 
			
		||||
PROMPT_FAILURE_COLOR=$FG[124]
 | 
			
		||||
PROMPT_VCS_INFO_COLOR=$FG[242]
 | 
			
		||||
PROMPT_PROMPT=$FG[208]
 | 
			
		||||
GIT_DIRTY_COLOR=$FG[124]
 | 
			
		||||
GIT_CLEAN_COLOR=$FG[148]
 | 
			
		||||
GIT_PROMPT_INFO=$FG[148]
 | 
			
		||||
 | 
			
		||||
# Hash
 | 
			
		||||
ROOT_ICON="# "
 | 
			
		||||
if [[ $EUID -ne 0 ]] ; then
 | 
			
		||||
	ROOT_ICON=""
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
PROMPT='%{$ROOT_ICON_COLOR%}$ROOT_ICON%{$reset_color%}%{$MACHINE_NAME_COLOR%}%m➜  %{$reset_color%}%{$PROMPT_SUCCESS_COLOR%}%c%{$reset_color%} %{$GIT_PROMPT_INFO%}$(git_prompt_info)%{$GIT_DIRTY_COLOR%}$(git_prompt_status) %{$reset_color%}%{$PROMPT_PROMPT%}ᐅ %{$reset_color%} '
 | 
			
		||||
 | 
			
		||||
#RPS1="${return_code}"
 | 
			
		||||
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_PREFIX=": "
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$GIT_PROMPT_INFO%} :"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$GIT_DIRTY_COLOR%}✘"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$GIT_CLEAN_COLOR%}✔"
 | 
			
		||||
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_ADDED="%{$FG[103]%}✚%{$rset_color%}"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$FG[103]%}✹%{$reset_color%}"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$FG[103]%}✖%{$reset_color%}"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_RENAMED="%{$FG[103]%}➜%{$reset_color%}"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$FG[103]%}═%{$reset_color%}"
 | 
			
		||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$FG[103]%}✭%{$reset_color%}"
 | 
			
		||||
 | 
			
		||||
export LSCOLORS=dxfxcxdxbxexexabagacad
 | 
			
		||||
		Reference in New Issue
	
	Block a user