dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

Preferences.sublime-settings (847B)


      1 // Settings in here override those in "Default/Preferences.sublime-settings",
      2 // and are overridden in turn by syntax-specific settings.
      3 {
      4   // Note that the font_face and font_size are overridden in the platform
      5   // specific settings file, for example, "Preferences (Linux).sublime-settings".
      6   // Because of this, setting them here will have no effect: you must set them
      7   // in your User File Preferences.
      8   "font_face": "SF Mono",
      9   "font_size": 13,
     10 
     11   // Columns in which to display vertical rulers. You can also pair the column
     12   // with a ruler style (See "ruler_style"), eg: [[80, "solid"]]
     13   "rulers": [80, 100],
     14 
     15   // The number of spaces a tab is considered equal to
     16   "tab_size": 2,
     17 
     18   // Set to true to insert spaces when tab is pressed
     19   "translate_tabs_to_spaces": true,
     20   "ignored_packages":
     21   [
     22     "Rust",
     23     "Vintage",
     24   ],
     25 }