Skip to content

Commit

Permalink
Fixed sublime settings
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 18, 2012
1 parent 299e88e commit a0f78fd
Showing 1 changed file with 31 additions and 16 deletions.
47 changes: 31 additions & 16 deletions Packages/User/Preferences.sublime-settings
Original file line number Diff line number Diff line change
@@ -1,18 +1,33 @@
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme",
"detect_indentation": true,
"ensure_newline_at_eof_on_save": false,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS"
],
"font_face": "Monaco",
"font_size": 12,
"tab_size": 4,
"translate_tabs_to_spaces": false,
"trim_trailing_white_space_on_save": false,
"use_tab_stops": true
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS","node_modules"],

// Sets the colors used within the text area
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme",

// Note that the font_face and font_size are overriden in the platform
// specific settings file, for example, "Base File (Linux).sublime-settings".
// Because of this, setting them here will have no effect: you must set them
// in your User File Preferences.
"font_face": "Monaco",
"font_size": 12,

// The number of spaces a tab is considered equal to
"tab_size": 4,

// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": false,

// If translate_tabs_to_spaces is true, use_tab_stops will make tab and
// backspace insert/delete up to the next tabstop
"use_tab_stops": true,

// Set to false to disable detection of tabs vs. spaces on load
"detect_indentation": true, // false

// Set to true to removing trailing white space on save
"trim_trailing_white_space_on_save": false,

// Set to true to ensure the last line of the file ends in a newline
// character when saving
"ensure_newline_at_eof_on_save": false
}

0 comments on commit a0f78fd

Please sign in to comment.