You are browsing a read-only backup copy of Wikitech. The live site can be found at wikitech.wikimedia.org
User:Huji: Difference between revisions
Jump to navigation
Jump to search
imported>Huji No edit summary |
imported>Huji No edit summary |
||
Line 5: | Line 5: | ||
My favorite git command: <code>git branch --no-merged | xargs -L 1 git branch -D</code> | My favorite git command: <code>git branch --no-merged | xargs -L 1 git branch -D</code> | ||
I like https://ohmyz.sh/ and use it on toolforge. I particularly like to modify its default theme (<code>cp .oh-my-zsh/themes/robbyrussell.zsh-theme .oh-my-zsh/custom/themes</code>) and change the prompt format to include username: | |||
<syntaxhighlight lang=zsh> | |||
PROMPT='%(!.%{%F{yellow}%}.)$USER@%{$fg[white]%}toolforge ' | |||
PROMPT+="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )" | |||
PROMPT+=' %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)' | |||
</syntaxhighlight> |
Revision as of 20:40, 11 May 2021
I am mw:User:Huji.
My favorite git command: git branch --no-merged | xargs -L 1 git branch -D
I like https://ohmyz.sh/ and use it on toolforge. I particularly like to modify its default theme (cp .oh-my-zsh/themes/robbyrussell.zsh-theme .oh-my-zsh/custom/themes
) and change the prompt format to include username:
PROMPT='%(!.%{%F{yellow}%}.)$USER@%{$fg[white]%}toolforge '
PROMPT+="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )"
PROMPT+=' %{$fg[cyan]%}%c%{$reset_color%} $(git_prompt_info)'