Skip to content

Instantly share code, notes, and snippets.

@RamiAwar
Created October 31, 2020 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RamiAwar/497df9a09cc4ed46a6d5d5d2739351ea to your computer and use it in GitHub Desktop.
Save RamiAwar/497df9a09cc4ed46a6d5d5d2739351ea to your computer and use it in GitHub Desktop.
export PATH=/usr/local/bin:$PATH
export PROMPT=" %(?.%F{green}√.%F{red}X %?) %F{green}%n@%1d λ "
eval "$(pyenv init -)"
# Git integration
autoload -Uz vcs_info
precmd_vcs_info() { vcs_info }
precmd_functions+=( precmd_vcs_info )
setopt prompt_subst
RPROMPT=\$vcs_info_msg_0_
zstyle ':vcs_info:git:*' formats '%F{206}(%b)%r%f'
zstyle ':vcs_info:*' enable git
# Pyenv setup
export WORKON_HOME=~/.virtualenvs
mkdir -p $WORKON_HOME
. ~/.pyenv/versions/3.9.0/bin/virtualenvwrapper.sh
# Add flutter to path
export PATH=$PATH:/Users/ramiawar/sdks/flutter/bin
# Customize LS colors for diff file types
# dir, symlink, sock, pipe, ex, block special, char special, ex with setuid, ex with setgid, writable dir with sticky, writable dir without sticky
export CLICOLOR=1
export LSCOLORS="fxgxExGxcxdxbxegedabagacad"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment