Skip to content

Instantly share code, notes, and snippets.

@harmstyler
Last active August 29, 2015 13:56

Revisions

  1. harmstyler revised this gist Feb 17, 2014. 1 changed file with 21 additions and 4 deletions.
    25 changes: 21 additions & 4 deletions sublime-user-settings.json
    Original file line number Diff line number Diff line change
    @@ -1,10 +1,14 @@
    {
    "ensure_newline_at_eof_on_save": true,
    // Custom color scheme available at http://buymeasoda.github.com/soda-theme/extras/colour-schemes.zip
    "color_scheme": "Packages/User/Monokai Soda (SL).tmTheme",
    // Ignored packages, remove Vintage to enable VIM mode
    "ignored_packages":
    [
    "Markdown",
    "Vintage"
    ],
    // Soda Theme, requires "Theme - Soda" package
    "theme": "Soda Dark 3.sublime-theme",
    // File endings to be ignored by Sublime
    "folder_exclude_patterns":
    [
    ".svn",
    @@ -16,8 +20,21 @@
    ".sass-cache",
    ".idea"
    ],
    "theme": "Soda Dark.sublime-theme",
    // Ensures the file always ends with a new line
    "ensure_newline_at_eof_on_save": true,
    // Removes annoying whitespace notification from current line, requires "TrailingSpaces" package
    "trailing_spaces_include_current_line": false,
    // Set to true to insert spaces when tab is pressed
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true
    // Set to true to removing trailing white space on save
    "trim_trailing_white_space_on_save": true,
    // Exclude logs and cache from search index
    "index_exclude_patterns":
    [
    "*.log",
    "*_log",
    "*.cache"
    ],
    // Show unix/dos file ending in status bar
    "show_line_endings": true
    }
  2. harmstyler revised this gist Feb 11, 2014. 1 changed file with 11 additions and 11 deletions.
    22 changes: 11 additions & 11 deletions sublime-user-settings.json
    Original file line number Diff line number Diff line change
    @@ -1,11 +1,11 @@
    {
    "ensure_newline_at_eof_on_save": true,
    "ignored_packages":
    [
    "Markdown",
    "Vintage"
    ],
    "folder_exclude_patterns":
    "ensure_newline_at_eof_on_save": true,
    "ignored_packages":
    [
    "Markdown",
    "Vintage"
    ],
    "folder_exclude_patterns":
    [
    ".svn",
    ".git",
    @@ -16,8 +16,8 @@
    ".sass-cache",
    ".idea"
    ],
    "theme": "Soda Dark.sublime-theme",
    "trailing_spaces_include_current_line": false,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true
    "theme": "Soda Dark.sublime-theme",
    "trailing_spaces_include_current_line": false,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true
    }
  3. harmstyler created this gist Feb 11, 2014.
    23 changes: 23 additions & 0 deletions sublime-user-settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    {
    "ensure_newline_at_eof_on_save": true,
    "ignored_packages":
    [
    "Markdown",
    "Vintage"
    ],
    "folder_exclude_patterns":
    [
    ".svn",
    ".git",
    ".hg",
    "CVS",
    "tmp",
    ".bundle",
    ".sass-cache",
    ".idea"
    ],
    "theme": "Soda Dark.sublime-theme",
    "trailing_spaces_include_current_line": false,
    "translate_tabs_to_spaces": true,
    "trim_trailing_white_space_on_save": true
    }