Skip to content

Instantly share code, notes, and snippets.

@seapy
Last active December 16, 2015 22:49
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 seapy/5509333 to your computer and use it in GitHub Desktop.
Save seapy/5509333 to your computer and use it in GitHub Desktop.
내가 Mac 에서 사용하는 ".profile" 설정
# 터미널 색 설정
export TERM="xterm-color"
export CLICOLOR=1
export LSCOLORS="gxfxcxdxbxegedabagacad"
# Alias 설정
alias ll="ls -al"
# 마우스 오른쪽으로 다른프로그램 열기할때 중복으로 앱이 나오는거 제거하는 방법
alias fixow='/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain user;killall Finder;echo "Open With has been rebuilt, Finder will relaunch"'
# for rbenv
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment