iTerm
개인적으로 iTerm을 사용한다. 이 설정은 iTerm에만 적용되는건 아니기 때문에 설치하지 않아도 상관없다.
.bash_profile
$ vi ~/.bash_profile
1 2 3 4 5 6 7 8 9 10 11 12 | # Add Homebrew `/usr/local/bin` and User `~/bin` to the `$PATH`PATH=/usr/local/bin:$PATHPATH=$HOME/bin:$PATHexport PATH# Load the shell dotfiles, and then some:# * ~/.path can be used to extend `$PATH`.# * ~/.extra can be used for other settings you don’t want to commit.for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do [ -r "$file" ] && source "$file"doneunset file |
.bash_prompt
$ vi~/.bash_prompt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | # @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt”# Shamelessly copied from https://github.com/gf3/dotfiles# Screenshot: http://i.imgur.com/s0Blh.pngif [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then export TERM=gnome-256colorelif infocmp xterm-256color >/dev/null 2>&1; then export TERM=xterm-256colorfiif tput setaf 1 &> /dev/null; then tput sgr0 if [[ $(tput colors) -ge 256 ]] 2>/dev/null; then # Changed these colors to fit Solarized theme MAGENTA=$(tput setaf 125) ORANGE=$(tput setaf 166) GREEN=$(tput setaf 64) PURPLE=$(tput setaf 61) WHITE=$(tput setaf 244) else MAGENTA=$(tput setaf 5) ORANGE=$(tput setaf 4) GREEN=$(tput setaf 2) PURPLE=$(tput setaf 1) WHITE=$(tput setaf 7) fi BOLD=$(tput bold) RESET=$(tput sgr0)else MAGENTA="\033[1;31m" ORANGE="\033[1;33m" GREEN="\033[1;32m" PURPLE="\033[1;35m" WHITE="\033[1;37m" BOLD="" RESET="\033[m"fiexport MAGENTAexport ORANGEexport GREENexport PURPLEexport WHITEexport BOLDexport RESETfunction parse_git_dirty() { [[ $(git status 2> /dev/null | tail -n1) != *"working directory clean"* ]] && echo "*"}function parse_git_branch() { git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/\1$(parse_git_dirty)/"}export PS1="\[${BOLD}${MAGENTA}\]\u \[$WHITE\]in \[$GREEN\]\w\[$WHITE\]\$([[ -n \$(git branch 2> /dev/null) ]] && echo \" on \")\[$PURPLE\]\$(parse_git_branch)\[$WHITE\]\n\$ \[$RESET\]"export PS2="\[$ORANGE\]→ \[$RESET\]" |
'
.aliases
$ vi ~/.aliases
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Detect which `ls` flavor is in useif ls --color > /dev/null 2>&1; then # GNU `ls` colorflag="--color"else # OS X `ls` colorflag="-G"fi# List all files colorized in long formatalias ll='ls -lh'# List all files colorized in long format, including dot filesalias la="ls -lha"# List only directoriesalias lsd='ls -l | grep "^d"'# Always use color output for `ls`alias ls="command ls ${colorflag}"export LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:' |
출처 : https://blog.woniper.net/290?category=537962
'OS > Mac OS' 카테고리의 다른 글
| [MAC] 명령행 작업 좀더 편리하게 하기! (0) | 2021.01.11 |
|---|---|
| macOS: 기본 쉘 (shell) 이 된 zsh 설정하기 (0) | 2021.01.07 |
| macOS iTerm2 zsh 설정하기 (0) | 2021.01.07 |
| [MacOS] 터미널(iTerm2) 한글 깨짐 해결 방법 (0) | 2021.01.07 |
| 개발자를 위한 필수 맥 앱(Mac App) 10선 (0) | 2019.12.20 |
| AWS EC2 ssh 로그인 tips (0) | 2019.12.20 |
| Mac OS 쓸모없는 파일 정리를 통한 하드 공간 확보 (0) | 2019.12.20 |
| 자주쓰는 Xcode 단축키 모음 (0) | 2019.12.20 |