When

Sublime Text를 기본설정으로 쓰게되면 폰트와 자간등이 불편할 수 있다.

How

Sublime Text에서 Mac의 경우 [Cmd + ,] 을 누르고 열리는 환경설정 파일에서
아래를 추가한다.

환경설정

{
   "always_show_minimap_viewport":true,
   "bold_folder_labels":true,
   "caret_style":"phase",
   "color_scheme":"Monokai.sublime-color-scheme",
   "default_line_ending":"unix",
   "draw_minimap_border":true,
   "draw_white_space":"all",
   "ensure_newline_at_eof_on_save":true,
   "fade_fold_buttons":false,
   "font_face":"D2Coding",
   "font_size":13,
   "highlight_line":true,
   "highlight_modified_tabs":true,
   "indent_guide_options":[
      "draw_normal",
      "draw_active"
   ],
   "line_padding_bottom":2,
   "line_padding_top":2,
   "overlay_scroll_bars":"enabled",
   "rulers":[
      80,
      120
   ],
   "show_encoding":true,
   "show_line_endings":true,
   "tab_size":4,
   "theme":"Default.sublime-theme",
   "translate_tabs_to_spaces":true,
   "trim_trailing_white_space_on_save":true,
   "word_wrap":true
}