Last active
December 16, 2015 22:49
-
-
Save seapy/5509333 to your computer and use it in GitHub Desktop.
내가 Mac 에서 사용하는 ".profile" 설정
This file contains 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 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