Skip to content

Instantly share code, notes, and snippets.

@drublic
Last active October 10, 2015 15:07

Revisions

  1. drublic revised this gist Sep 9, 2013. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions st2-settings.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -22,6 +22,7 @@
    [
    "Vintage"
    ],
    "indent_guide_options": ["draw_normal", "draw_active"],
    "line_padding_bottom": 1,
    "line_padding_top": 1,
    "rulers":
  2. drublic revised this gist May 8, 2013. 2 changed files with 23 additions and 18 deletions.
    4 changes: 4 additions & 0 deletions Default (OSX).sublime-keymap
    Original file line number Diff line number Diff line change
    @@ -6,6 +6,10 @@

    { "keys": ["ctrl+shift+j"], "command": "js_run" },

    // Paste and indent
    { "keys": ["super+v"], "command": "paste_and_indent" },
    { "keys": ["super+shift+v"], "command": "paste" },

    // Insert console.log
    { "keys": ["super+shift+l"],
    "command": "insert_snippet",
    37 changes: 19 additions & 18 deletions st2-settings.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -1,36 +1,37 @@
    {
    "bold_folder_labels": true,

    "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",

    "file_exclude_patterns": [
    "draw_white_space": "all",
    "ensure_newline_at_eof_on_save": true,
    "file_exclude_patterns":
    [
    ".DS_Store",
    ".gitkeep"
    ],

    "folder_exclude_patterns": [
    "folder_exclude_patterns":
    [
    ".git",
    ".sass-cache",
    "tmp"
    ],

    "font_face": "Source Code Pro",
    "font_size": 12.0,

    "highlight_modified_tabs": true,
    "highlight_line": true,
    "draw_white_space": "all",
    "line_padding_top": 1,
    "highlight_modified_tabs": true,
    "ignored_packages":
    [
    "Vintage"
    ],
    "line_padding_bottom": 1,

    "line_padding_top": 1,
    "rulers":
    [
    80
    ],
    "scroll_past_end": true,
    "tab_completion": true,

    "tab_size": 4,
    "theme": "Soda Light.sublime-theme",
    "translate_tabs_to_spaces": false,
    "trim_trailing_white_space_on_save": true,
    "ensure_newline_at_eof_on_save": true,
    "scroll_past_end": true,

    "rulers": [80],
    "ignored_packages": ["Vintage"]
    "trim_trailing_white_space_on_save": true
    }
  3. drublic revised this gist Jan 29, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Default (OSX).sublime-keymap
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,5 @@
    [
    { "keys": ["ctrl+alt+f"], "command": "use_it" },
    { "keys": ["ctrl+alt+f"], "command": "use_it" },

    { "keys": ["ctrl+tab"], "command": "prev_view_in_stack" },
    { "keys": ["ctrl+shift+tab"], "command": "next_view_in_stack" },
  4. drublic revised this gist Jan 29, 2013. 1 changed file with 20 additions and 21 deletions.
    41 changes: 20 additions & 21 deletions Default (OSX).sublime-keymap
    Original file line number Diff line number Diff line change
    @@ -1,25 +1,24 @@
    [
    { "keys": ["ctrl+alt+f"], "command": "use_it" },

    { "keys": ["ctrl+tab"], "command": "prev_view_in_stack" },
    { "keys": ["ctrl+shift+tab"], "command": "next_view_in_stack" },
    { "keys": ["ctrl+tab"], "command": "prev_view_in_stack" },
    { "keys": ["ctrl+shift+tab"], "command": "next_view_in_stack" },

    { "keys": ["ctrl+shift+j"], "command": "js_run" },

    // Insert console.log
    { "keys": ["super+shift+l"],
    "command": "insert_snippet",
    "args": {
    "contents": "console.log(${1:}$SELECTION);${0}"
    }
    },

    // Insert var_dump
    { "keys": ["super+shift+k"],
    "command": "insert_snippet",
    "args": {
    "contents": "var_dump(${1:}$SELECTION);${0}"
    }
    }

    ]
    { "keys": ["ctrl+shift+j"], "command": "js_run" },

    // Insert console.log
    { "keys": ["super+shift+l"],
    "command": "insert_snippet",
    "args": {
    "contents": "console.log(${1:}$SELECTION);${0}"
    }
    },

    // Insert var_dump
    { "keys": ["super+shift+k"],
    "command": "insert_snippet",
    "args": {
    "contents": "var_dump(${1:}$SELECTION);${0}"
    }
    }
    ]
  5. drublic revised this gist Jan 29, 2013. 2 changed files with 31 additions and 3 deletions.
    25 changes: 25 additions & 0 deletions Default (OSX).sublime-keymap
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    [
    { "keys": ["ctrl+alt+f"], "command": "use_it" },

    { "keys": ["ctrl+tab"], "command": "prev_view_in_stack" },
    { "keys": ["ctrl+shift+tab"], "command": "next_view_in_stack" },

    { "keys": ["ctrl+shift+j"], "command": "js_run" },

    // Insert console.log
    { "keys": ["super+shift+l"],
    "command": "insert_snippet",
    "args": {
    "contents": "console.log(${1:}$SELECTION);${0}"
    }
    },

    // Insert var_dump
    { "keys": ["super+shift+k"],
    "command": "insert_snippet",
    "args": {
    "contents": "var_dump(${1:}$SELECTION);${0}"
    }
    }

    ]
    9 changes: 6 additions & 3 deletions st2-settings.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,5 @@
    {
    "bold_folder_labels": true,
    "highlight_modified_tabs": true,

    "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",

    @@ -15,19 +14,23 @@
    "tmp"
    ],

    "font_face": "Source Code Pro",
    "font_size": 12.0,

    "highlight_modified_tabs": true,
    "highlight_line": true,
    "draw_white_space": "all",
    "line_padding_top": 1,
    "line_padding_bottom": 1,

    "tab_completion": false,
    "tab_completion": true,

    "tab_size": 4,
    "translate_tabs_to_spaces": false,
    "trim_trailing_white_space_on_save": true,
    "ensure_newline_at_eof_on_save": true,
    "scroll_past_end": true,

    "rulers": [80]
    "rulers": [80],
    "ignored_packages": ["Vintage"]
    }
  6. drublic revised this gist Sep 12, 2012. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion st2-settings.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -1,5 +1,6 @@
    {
    "bold_folder_labels": true,
    "highlight_modified_tabs": true,

    "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",

    @@ -29,4 +30,4 @@
    "ensure_newline_at_eof_on_save": true,

    "rulers": [80]
    }
    }
  7. drublic renamed this gist Sep 12, 2012. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  8. drublic revised this gist Sep 12, 2012. 1 changed file with 3 additions and 2 deletions.
    5 changes: 3 additions & 2 deletions st2-settings.json
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,3 @@

    {
    "bold_folder_labels": true,

    @@ -19,6 +18,8 @@

    "highlight_line": true,
    "draw_white_space": "all",
    "line_padding_top": 1,
    "line_padding_bottom": 1,

    "tab_completion": false,

    @@ -28,4 +29,4 @@
    "ensure_newline_at_eof_on_save": true,

    "rulers": [80]
    }
    }
  9. drublic created this gist Sep 12, 2012.
    31 changes: 31 additions & 0 deletions st2-settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,31 @@

    {
    "bold_folder_labels": true,

    "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",

    "file_exclude_patterns": [
    ".DS_Store",
    ".gitkeep"
    ],

    "folder_exclude_patterns": [
    ".git",
    ".sass-cache",
    "tmp"
    ],

    "font_size": 12.0,

    "highlight_line": true,
    "draw_white_space": "all",

    "tab_completion": false,

    "tab_size": 4,
    "translate_tabs_to_spaces": false,
    "trim_trailing_white_space_on_save": true,
    "ensure_newline_at_eof_on_save": true,

    "rulers": [80]
    }