Skip to content

Instantly share code, notes, and snippets.

@doowonee
Created July 6, 2019 13:09
Show Gist options
  • Save doowonee/9499a3e3997130d8bdd6f6b85ecf3889 to your computer and use it in GitHub Desktop.
Save doowonee/9499a3e3997130d8bdd6f6b85ecf3889 to your computer and use it in GitHub Desktop.
ubuntu enviroment
# 내가 만든 앱이 사용하는 것
export ERP_API_DEBUG=debug
# pip 사용 하면서 설정
export PATH=$HOME/.local/bin:$PATH
# 내 취향
export EDITOR='vi'
# pyenv 사용 하면서 설정
export PYENV_ROOT=$HOME/.pyenv
export PATH=$PYENV_ROOT/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="/home/the1900/.oh-my-zsh"
ZSH_THEME="spaceship"
plugins=(git)
source $ZSH/oh-my-zsh.sh
### configuration for interative things only ###
# pyenv install
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment