Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- IntelliJ
- batch
- spring boot tomcat
- spring pid
- 코드 리뷰
- ORM
- ApplicationPidFileWriter
- Data REST
- spring-webmvc
- spring-webmvc #코드읽기
- Spring Data JPA
- REST API
- JPA mapping
- Spring
- spring bean
- tomcat
- spring batch 코드
- spring jpa
- JUnit
- 세미나
- docker
- 톰캣
- Spring Batch
- spring-mvc
- spring camp
- SuperTypeToken
- JPA
- static inner class
- spring boot
- Spring Data REST
- Today
- 1
- Total
- 916,386
woniper
mac 터미널 color 설정 본문
iTerm
개인적으로 iTerm을 사용한다. 이 설정은 iTerm에만 적용되는건 아니기 때문에 설치하지 않아도 상관없다.
.bash_profile
$ vi ~/.bash_profile# Add Homebrew `/usr/local/bin` and User `~/bin` to the `$PATH` PATH=/usr/local/bin:$PATH PATH=$HOME/bin:$PATH export 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" done unset file
.bash_prompt
$ vi~/.bash_prompt# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt” # Shamelessly copied from https://github.com/gf3/dotfiles # Screenshot: http://i.imgur.com/s0Blh.png if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then export TERM=gnome-256color elif infocmp xterm-256color >/dev/null 2>&1; then export TERM=xterm-256color fi if 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" fi export MAGENTA export ORANGE export GREEN export PURPLE export WHITE export BOLD export RESET function 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# Detect which `ls` flavor is in use if ls --color > /dev/null 2>&1; then # GNU `ls` colorflag="--color" else # OS X `ls` colorflag="-G" fi # List all files colorized in long format alias ll='ls -lh' # List all files colorized in long format, including dot files alias la="ls -lha" # List only directories alias 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:'
'개발환경' 카테고리의 다른 글
[Docker] --link를 이용해 nginx와 jenkins 연결하기 (0) | 2016.08.15 |
---|---|
Intellij로 코드 분석하기 #UML(Diagram) (2) | 2015.12.29 |
[Ubuntu] mysql 외부 접속 허용 설정 (1) | 2015.04.06 |
[Intellij, Android Studio] 창 여러개 띄우기 설정 (Project Multi Opening) (0) | 2014.12.04 |
[Intellij] lombok 사용하기 (3) | 2014.10.21 |
- Tag
- terminal color, 터미널 컬러
0 Comments