Thursday 1 August 2013

Sublime Text 3 設定

バージョンアップしたのでメモっておく。
{

 //エディタ表示関連
 "color_scheme": "Packages/Railscasts.tmTheme",

 "font_face": "Ricty",
 "font_size": 14.0,
 "font_options":
  [ "no_italic", "no_round" ],
 "line_padding_bottom": 3,
 "line_padding_top": 3,

 "margin": 0,    // Spacing btw gutter & text
 "rulers": [ 80, 100, 120 ],
 "word_wrap": true,
 "highlight_line": true,
 "scroll_past_end": true,
 "draw_white_space": "all", // "none", "all", "selection"

 // エディタ操作関連
 "spell_check": true,
 "indent_to_bracket": true, // Adds whitespace up to first open bracket
 "match_brackets_angle": true,
 "move_to_limit_on_up_down": true,
 "trim_trailing_white_space_on_save": true,
 "tab_completion": true,  // shift+tab for explicit tab


 // UI関連
 "theme": "Soda Dark.sublime-theme",
 "highlight_modified_tabs": true,
 "bold_folder_labels": true,


 // Application Behavior Settings
 "open_files_in_new_window": false,
 "preview_on_click": false,
 "enable_telemetry": false,
 "ignored_packages":
 [
  "Auto Encoding for Ruby",
  "All Autocomplete",
  "Vintage",
  "Ruby on Rails snippets",
  "RubyFormat",
  "LESS",
  "AppleScript",
  "LESS-build"
 ],


 // その他、よくわからんの。
 "build_env": {
  "PATH": "/usr/local/bin:/usr/local/sbin:/usr/local/share:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin"
 },
 "detect_slow_plugins": false,
 "disable_formatted_linebreak": true,
 "vintage_ctrl_keys": false
}


追記:
SublimeCodeIntelを有効にするとなぜかコンテクストメニューが使えなくなるので、Disableした。それと、BracketHighlighterが機能していなかったので、ST3ブランチを入れなおした。

No comments:

Post a Comment