상대적이면서도 절대적인 개인취향이 반영된
어떤 개발자의 맥 환경
defaults write -g ApplePressAndHoldEnabled -bool false
구식 개발자라 단축키 하나가 아쉬운 상황인지라.. 볼륨 키우고 백라이트 조절 등이 필요 할때는 fn 키랑 조합으로 사용하면 되니까 무방.
설정 -> 키보드 -> 키보드 단축키 -> 기능키'F1, F2 등의 키를 표준 기능 키로 사용' 선택
설정 -> 키보드 -> 키보드 단축키 -> 보조키 -> Caps Lock -> Ctrl
Karabiner-Elements: 오른쪽 command -> F18
설정 -> 키보드 -> 키보드 단축키 -> 입력 소스 -> 다음 소스 F18, 이전 소스 ctrl + F18
잠금화면에서 자신의 이름이나 이메일 등이 표시되도록. 분실시 찾아줄 수 있게
화면 잠금 -> 잠겨 있을 때 메시지 보기 -> 전화 번호나 이메일
설정 -> 일반 -> 공유 -> 로컬 호스트 이름
이미 산거라도 쓸데 없는건 설치하지 않기!
- PopClip: text 선택시 이런저런 사용가능한 action 이 popup으로 뜸
- Dropover: 임시 스택 of everything. Yoink 보다 나음.
- Amphetamine: 화면이 꺼지지 않게 유지, Caffeine 보다 나음
- Ms Todo: 할일 관리
- shottr, https://shottr.cc/
three finger swipe up/down -> command + up/down 으로 설정
워낙 extention들이 좋은게 많아서..
Mac용 Command installer. 앞으로는 커맨드로 왠만한 도구들을 설치
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
XCode를 설치해도 되지만 XCode 안쓰는데도 2기가 짜리를 설치할 필요가 없으니 gcc/git 등의 command tool만 설치!
https://developer.apple.com/downloads
brew git install
참고: http://mxcl.github.io/homebrew/
- vim 이나 IdeaVim 에서 esc 누를 때 영문으로 IME 변경하는 Rule (Mac + Karabiner) https://gist.github.com/doortts/3eb501469a9308ed8500f699b5aaed22
mkdir ~/Library/KeyBindings
vi ~/Library/KeyBindings/DefaultKeyBinding.dict
을 열어서 아래 내용 추가
{
"₩" = ("insertText:", "`");
"~a" = (); "~b" = (); "~c" = (); "~d" = (); "~e" = (); "~f" = (); "~g" = (); "~h" = (); "~i" = (); "~j" = (); "~k" = (); "~l" = (); "~m" = (); "~n" = (); "~o" = (); "~p" = (); "~q" = (); "~r" = (); "~s" = (); "~t" = (); "~u" = (); "~v" = (); "~w" = (); "~x" = (); "~y" = (); "~z" = ();
}
맥에서 키보드 딜레이 문제로 의도치 않게 앱이 종료되는걸 방지해 줌
https://github.com/dteoh/SlowQuitApps
터치패드는 natural scroll 로 동작하고 mouse 는 기본(기존) 스크롤 방식으로 동작하게 만들어 주는 앱
https://pilotmoon.com/scrollreverser/
App Launcher
대체제품: Raycast https://www.raycast.com/
메뉴바 아이콘이 길어지는 걸 해결 http://www.macbartender.com
todo 중에서 간단하면서 잘 동작함 (wunderlist 후속제품)
https://to-do.microsoft.com/tasks/
기본 터미널보다 우수함.
대체제: http://tmux.sourceforge.net/
설치된 앱을 깨끗하게 지우자
개발자용 컬러 피커. 색을 다루는 개발자라면!
http://panic.com/~wade/picker/
적당한 markdown 노트 앱
최신 OS에서 동작 안하는 것으로 보임
finder에서 현재 폴더로 터미널 띄우기 http://zipzapmac.com/go2shell
Rank 기반 디렉터리 이동
https://github.com/joelthelion/autojump
https://github.com/romkatv/powerlevel10k
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
https://github.com/zsh-users/zsh-syntax-highlighting
https://github.com/marlonrichert/zsh-autocomplete
https://github.com/romkatv/powerlevel10k
https://github.com/bling/vim-airline
curl https://raw.githubusercontent.com/git/git/master/contrib/diff-highlight/diff-highlight > /usr/local/bin/diff-highlight && chmod +x /usr/local/bin/diff-highlight
alias.co=checkout
alias.edit=!f() { git diff --name-status --diff-filter=U | cut -f2 ; }; vi `f`
alias.add-unmerged=!f() { git diff --name-status --diff-filter=U | cut -f2 ; }; git add `f`
pager.log=diff-highlight | less -F -X
pager.show=diff-highlight | less -F -X
pager.diff=diff-highlight | less -F -X
rerere.enabled=true
pull.rebase=true
credential.helper=cache --timeout=604800
syntax on
set laststatus=2
set t_Co=256
hi Comment guifg=#80a0ff ctermfg=darkgray
nnoremap <Tab> >>_
nnoremap <S-Tab> <<_
inoremap <S-Tab> <C-D>
vnoremap <Tab> >gv
vnoremap <S-Tab> <gv
nnoremap 0 ^
vnoremap 0 ^
autocmd Filetype gitcommit setlocal spell textwidth=72
set smartcase
set paste
" Disable beep and flash with an autocmd
set noeb vb t_vb=
au GUIEnter * set vb t_vb=