Created
July 6, 2019 13:09
-
-
Save doowonee/9499a3e3997130d8bdd6f6b85ecf3889 to your computer and use it in GitHub Desktop.
ubuntu enviroment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 내가 만든 앱이 사용하는 것 | |
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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