Skip to content

Instantly share code, notes, and snippets.

View jsguillerme's full-sized avatar
📕
learning Go

Guilherme Andrade jsguillerme

📕
learning Go
View GitHub Profile
@mikehazell
mikehazell / robbyrussell.zsh_theme
Last active August 5, 2024 15:31
oh-my-zsh Default Theme plus Node version info
# oh-my-zsh Theme
# Default robbyrussell theme with node version info.
# Installation: place this file in .oh-my-zsh/custom/themes/robbyrussell.zsh_theme
function node_prompt_version {
if which node &> /dev/null; then
echo "%{$fg_bold[blue]%}node(%{$fg[red]%}$(node -v)%{$fg[blue]%}) %{$reset_color%}"
fi
}