Skip to content

Instantly share code, notes, and snippets.

@eriktrautman
Last active January 12, 2018 03:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eriktrautman/e011eb52a0a5b06c19d3 to your computer and use it in GitHub Desktop.
Save eriktrautman/e011eb52a0a5b06c19d3 to your computer and use it in GitHub Desktop.
Sublime Text 2 User Preferences
// These settings can be found under Sublime Text 2 >> Preferences >> Settings - User
// You can just copy-paste this file right over whatever was there if you want
//
// Check out the file at Sublime Text 2 >> Preferences >> Settings - Default
// to see what options are available for you
{
"color_scheme": "Packages/Color Scheme - Default/LAZY.tmTheme",
"font_size": 14.0,
"ignored_packages":
[
"Vintage"
],
"open_files_in_new_window": false,
// The number of spaces a tab is considered equal to
"tab_size": 2,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
// OS X only: When files are opened from finder, or by dragging onto the
// dock icon, this controls if a new window is created or not.
"open_files_in_new_window": false,
// Makes tabs with modified files more visible
"highlight_modified_tabs": true,
// Instead of using "enter" to autocomplete
"auto_complete_commit_on_tab": true,
// Highlight the line you're currently typing on
"highlight_line": true,
// Wrap lines once they reach a certain length
"word_wrap": "true",
"wrap_width": 70
}
@siakaramalegos
Copy link

Is line 37 supposed to say true with quotes or without? My guess is without but maybe Sublime is smart enough to figure it out.

@IshmaelKhalid
Copy link

I used these settings but changed the theme:
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme",
"font_size": 16,
Much more readable for me. Get it here: http://kkga.github.io/spacegray/

Copy link

ghost commented Mar 9, 2016

"open_files_in_new_window": false, is typed twice, on lines 15, and 25.

Copy link

ghost commented Mar 9, 2016

I have also added these that make my life easier, it might help you guys too:

  // Show folders in the side bar in bold

  "bold_folder_labels": true,

  // Set to true to ensure the last line of the file ends in a newline character when saving

  "ensure_newline_at_eof_on_save": true,

  // Shows the fold buttons

  "fade_fold_buttons": false,

  // Additional spacing at the bottom and top of each line, in pixels

  "line_padding_bottom": 3,

  "line_padding_top": 3,

  // remove trailing white space on save

  "trim_trailing_white_space_on_save": true,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment