mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-09 02:24:03 +01:00
Merge 2a565f49eb into 397c085a19
This commit is contained in:
commit
3198a39351
3 changed files with 47 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,7 +1,6 @@
|
||||||
locals.zsh
|
locals.zsh
|
||||||
log/.zsh_history
|
log/.zsh_history
|
||||||
projects.zsh
|
projects.zsh
|
||||||
custom/*
|
|
||||||
!custom/example
|
!custom/example
|
||||||
!custom/example.zsh
|
!custom/example.zsh
|
||||||
*.swp
|
*.swp
|
||||||
|
|
|
||||||
24
custom/plugins/shukyf/shukyf.plugin.zsh
Normal file
24
custom/plugins/shukyf/shukyf.plugin.zsh
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
c() { cd ~/code/$1; }
|
||||||
|
|
||||||
|
_c() { _files -W ~/code -/; }
|
||||||
|
compdef _c c
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
b() { cd ~/code/biokm/$1; }
|
||||||
|
|
||||||
|
_b() { _files -W ~/code/biokm -/; }
|
||||||
|
compdef _b b
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
p() { cd ~/private_projects/$1; }
|
||||||
|
|
||||||
|
_p() { _files -W ~/private_projects -/; }
|
||||||
|
compdef _p p
|
||||||
|
|
||||||
|
|
||||||
|
alias gmf='git merge --no-ff'
|
||||||
|
compdef _git gmf=git-merge--no-ff
|
||||||
23
themes/shukydvir.zsh-theme
Normal file
23
themes/shukydvir.zsh-theme
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
#RVM settings
|
||||||
|
if [[ -s ~/.rvm/scripts/rvm ]] ; then
|
||||||
|
RPS1="%{$reset_color%}%{$fg[yellow]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1"
|
||||||
|
else
|
||||||
|
if which rbenv &> /dev/null; then
|
||||||
|
RPS1="%{$reset_color%}%{$fg[yellow]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$reset_color%} $EPS1"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[blue]%}("
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}✗%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[cyan]%}√"
|
||||||
|
|
||||||
|
#Customized git status, oh-my-zsh currently does not allow render dirty status before branch
|
||||||
|
git_custom_status() {
|
||||||
|
local cb=$(current_branch)
|
||||||
|
if [ -n "$cb" ]; then
|
||||||
|
echo "$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX$(parse_git_dirty)"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
PROMPT='%{$fg[green]%}[%~% ]$(git_custom_status)%{$reset_color%}%B$%b '
|
||||||
Loading…
Add table
Add a link
Reference in a new issue