LoginSignup
9
8

More than 5 years have passed since last update.

Sublime Text 3 User Settings

Last updated at Posted at 2014-04-13
{
    // カーソルスタイル
    "caret_style": "phase",
    // テーマ(どらきゅら)
    "color_scheme": "Packages/Dracula Color Scheme/Dracula.tmTheme",
    // Emmetを有効にすると、日本語変換確定後に文字が消えるのを防ぐ
    "disable_formatted_linebreak": true,
    // スペースを表示
    "draw_white_space": "all",
    // フォントサイズ
    "font_size": 11,
    // 選択行のハイライト
    "highlight_line": true,
    // 未保存タブを強調表示
    "highlight_modified_tabs": true,
    // Vintageモードon
    "ignored_packages":
    [
    ],
    // 改行した時に、スペースを入れてくれる
    "indent_to_bracket": true,
    // ルーラー設定
    "rulers":
    [
        0,
        80
    ],
    // タブサイズ
    "tab_size": 4,
    // タブをスペースに変換
    "translate_tabs_to_spaces": true,
    // 保存時に余計なスペースを取り除く
    "trim_trailing_white_space_on_save": true,
    // ファイルを開いた時に、コマンドモードで開始
    "vintage_start_in_command_mode": true,
    // Vintageでコントロールキーを使用可能にする
    "vintageous_use_ctrl_keys": true,
    // ワードラップ
    "word_wrap": true
}
9
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
8