"""""
" .vimrc (vi 편집기에서 표시할 색깔 설정)
" 컬러 설정
color elflord
" 탭크기
set tabstop=4
" 줄번호 표시
set number
" 파일 인코딩 설정
set fencs=utf-8,cp949
#####
# linux
#[규칙] 파일종류=속성;글자색;배경색:
# 파일종류
# di = directory
# fi = file
# ln = linker file
# no = text
# ex = exe
# so = soket
# or = orphan
# pi = name pipe
# bd = block device
# cd = character device
# ow = other writable directory
# 속성
# 00 none
# 01 bold
# 04 underscore
# 05 blink
# 07 reverse
# 08 concealed
# 글자색
# 31 red
# 32 green
# 33 yellow
# 34 blue
# 35 magenta
# 36 sky
# 37 white
# 배경색
# 40 balck
# 41 red
# 42 green
# 43 yellow
# 44 blue
# 45 magenta
# 46 sky
# 47 white
export LS_COLORS='no=00:fi=00:di=00;36:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:ow=01;36;40:*.sh=00;32'
# LS_COLOR 설정 값을 출력하고 설정(export)한다. LS_COLOR 값을 수정할때 용이하다.
# -b : sh 용
dircolors -b
# ls 의 --color=auto 옵션을 alias 로 지정
alias ll='ls -ahl --color=auto'
#####
# mac
# [규칙] 다음 11개의 순서로 색깔을 설정
# directory
# symbolic link
# socket
# pipe
# executable
# block special
# character special
# executable with setuid bit set
# executable with setgid bit set
# directory writable to others, with sticky bit
# directory writable to others, without sticky bit
# 색상
# a black
# b red
# c green
# d brown
# e blue
# f magenta
# g cyan
# h light grey
# A bold black, usually shows up as dark grey
# B bold red
# C bold green
# D bold brown, usually shows up as yellow
# E bold blue
# F bold magenta
# G bold cyan
# H bold light grey; looks like bright white
# x default foreground or background
# 컬러값 설정
export LSCOLORS='GxFxCxDxBxegedabagaced'
# CLICOLOR 활성화
export CLICOLOR=1
# ls 의 -G 옵션을 alias 로 지정
alias ll='ls -ahlG'
# iterm2 컬러 설정
iterm2 -> preference -> colors -> darkside
# 또는 scheme 다운로드 후 import
http://iterm2colorschemes.com/
dracula (https://draculatheme.com/iterm/)
iterm2 -> preference -> colors -> import -> schem 파일
comments:
댓글 쓰기