Skip to content

Instantly share code, notes, and snippets.

@ymattu
Created April 10, 2016 08:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ymattu/eac7b572789f27de8edd65f01c890ed3 to your computer and use it in GitHub Desktop.
Save ymattu/eac7b572789f27de8edd65f01c890ed3 to your computer and use it in GitHub Desktop.
Sublime Text 3 のセッティング
{
"color_scheme": "Packages/One Dark Material - Theme/schemes/OneDark.tmTheme", // カラースキーム
"theme": "Material-Theme-Darker.sublime-theme", // テーマ
"material_theme_small_tab" : true, // タブを小さく
"material_theme_small_statusbar" : true, // ステータスバーを小さく
"material_theme_compact_sidebar" : true, // サイドバーを小さく
"material_theme_compact_panel" : true, // 検索窓を小さく
"font_face": "Ricty Diminished", // フォント
"font_size": 16, // フォントサイズ
"font_options": [ "gray_antialias", "subpixel_antialias" ], // RetinaのMacとWindows場合
"translate_tabs_to_spaces": true, // タブではなくスペースを使用する
"tab_size": 2, // タブサイズ(1タブのスペースの数)
"drag_text": false, // 選択しているテキストをドラッグで位置を変えられないように(操作ミスをなくす)
"line_padding_top" : 0, // 行間
"line_padding_bottom" : 0, // 行間
"auto_find_in_selection": true, // 複数行のテキストを選択ている状態で検索パネルを開いた時、In selectionフラグが自動的に有効
"auto_indent": true, // オートインデント
"indent_to_bracket": true, // 括弧までインデント
"indent_guide_options": [ "draw_normal", "draw_active" ], // 今いるインデントに縦線を表示
"copy_with_empty_selection": true, // 何も選択していない時に切り取りやコピーを行うと現在の行に対して動作
"draw_centered": false, // テキストを中央に配置しない
"draw_white_space": "all", // 空白を常に描画
"enable_tab_scrolling": true, // 複数のファイルを開いた時、タブ幅を縮小するだけでなく左右にスクロール
"ensure_newline_at_eof_on_save": true, // 最後の行を空白行にして保存
"highlight_line": true, // 選択している行をハイライト
"ignored_packages": // 一時的に無視するパッケージ
[
"Vintage"
],
"remember_open_files": true, // 直前に開いていたファイルを記憶
"trim_trailing_white_space_on_save": true, // ファイルセーブ時に行末の空白を自動で削除
"always_show_minimap_viewport": true, // ミニマップで常に現在の場所を表示
"bold_folder_labels": true, // サイドバーのフォルダを太字に
"rulers": [100], //ルーラー(カンマ区切りで複数指定可能)
"open_files_in_new_window": false, // 新しいファイルを開くときに新しいウィンドウで開かない
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment