Skip to content

Instantly share code, notes, and snippets.

@bkeepers
Created January 11, 2012 20:17

Revisions

  1. bkeepers revised this gist Jan 12, 2012. 1 changed file with 3 additions and 3 deletions.
    6 changes: 3 additions & 3 deletions Global.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -35,12 +35,12 @@
    ],
    "ignored_packages":
    [
    "Vintage",
    "alternative_autocompletion"
    "Vintage"
    ],
    "new_window_settings":
    {
    "show_minimap": false
    },
    "theme": "Soda Light.sublime-theme"
    "theme": "Soda Light.sublime-theme",
    "highlight_modified_tabs": true
    }
  2. bkeepers revised this gist Jan 11, 2012. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    *
  3. bkeepers created this gist Jan 11, 2012.
    12 changes: 12 additions & 0 deletions Base File.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    {
    "color_scheme": "Packages/Made of Code.tmTheme",
    "draw_white_space": "selection",
    "font_size": 14,
    "line_padding_bottom": 0.5,
    "line_padding_top": 0.5,
    "tab_completion": true,
    "tab_size": 2,
    "translate_tabs_to_spaces": true,
    "trim_automatic_white_space": true,
    "trim_trailing_white_space_on_save": true
    }
    16 changes: 16 additions & 0 deletions Default (OSX).sublime-keymap
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,16 @@
    [
    { "keys": ["escape"], "command": "alternative_autocomplete", "context":
    [
    { "key": "num_selections", "operator": "equal", "operand": 1 },
    { "key": "overlay_visible", "operator": "equal", "operand": false },
    { "key": "panel_visible", "operator": "equal", "operand": false }
    ]
    },
    { "keys": ["shift+escape"], "command": "alternative_autocomplete", "args": {"cycle": "previous"}, "context":
    [
    { "key": "num_selections", "operator": "equal", "operand": 1 },
    { "key": "overlay_visible", "operator": "equal", "operand": false },
    { "key": "panel_visible", "operator": "equal", "operand": false }
    ]
    }
    ]
    46 changes: 46 additions & 0 deletions Global.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,46 @@
    {
    "file_exclude_patterns":
    [
    "*.pyc",
    "*.pyo",
    "*.exe",
    "*.dll",
    "*.obj",
    "*.o",
    "*.a",
    "*.lib",
    "*.so",
    "*.dylib",
    "*.ncb",
    "*.sdf",
    "*.suo",
    "*.pdb",
    "*.idb",
    ".DS_Store",
    "*.class",
    "*.psd",
    "*.db",
    "*.pdf"
    ],
    "folder_exclude_patterns":
    [
    ".svn",
    ".git",
    ".hg",
    "CVS",
    ".bundle",
    "log",
    "tmp",
    ".sass-cache"
    ],
    "ignored_packages":
    [
    "Vintage",
    "alternative_autocompletion"
    ],
    "new_window_settings":
    {
    "show_minimap": false
    },
    "theme": "Soda Light.sublime-theme"
    }