Skip to content

Instantly share code, notes, and snippets.

View felipetavares's full-sized avatar

Felipe Tavares felipetavares

View GitHub Profile
@igorjs
igorjs / igorjs.zsh-theme
Last active March 19, 2023 22:59
Oh My ZSH Custom Theme
# prompt cursor fix when exiting vim
echo -en '\e[0 q'
prompt_symbol() {
local symbol="➜"
if [[ $UID -eq 0 ]]; then
symbol="#"
fi
symbol="%{$fg_bold[grey]%}${symbol}%{$reset_color%}"
echo -n "$symbol"