Sublime Text 3 기본 설정


git commit 메세지를 설정하는 에디터가 기본적으로는 nano 에디터일 텐데, nano에디터에는 익숙하지 않아서 vim으로 바꿨었다. vim으로 바꾸는 커맨드는 다음과 같다.


$ git config --global core.editor vim


하지만, vim도 뭔가 한글 작성시에는 느리게 동작하는 불편함때문에, 이쁜 에디터 중 하나인 sublime text를 사용하기로 했다.


sublime text를 git의 commit 메시지 에디터로 사용하려면 다음과 같은 커맨드를 터미널에 입력하면 된다.


$ sudo ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /bin/subl


$ git config --global core.editor "subl -n -w"


+ Recent posts