Skip to content

Instantly share code, notes, and snippets.

@poteto
Last active July 25, 2016 05:13
Show Gist options
  • Select an option

  • Save poteto/1816e69a43e48e530ccd to your computer and use it in GitHub Desktop.

Select an option

Save poteto/1816e69a43e48e530ccd to your computer and use it in GitHub Desktop.
Sublime Packages
[
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+shift+'"], "command": "change_quotes" },
{ "keys": ["super+shift+a"], "command": "align_tab",
"args" : {"live_preview" : true}
},
{ "keys": ["super+shift+="], "command": "align_tab",
"args" : {"user_input" : "=/f"}
},
{ "keys": ["super+shift+;"], "command": "align_tab",
"args" : {"user_input" : ":/f"}
},
{ "keys": ["`"], "command": "insert_snippet", "args": {"contents": "`$0`"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^(?:\t| |\\)|]|;|\\}|$)", "match_all": true }
]
},
{ "keys": ["`"], "command": "insert_snippet", "args": {"contents": "`${0:$SELECTION}`"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["`"], "command": "move", "args": {"by": "characters", "forward": true}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^`", "match_all": true }
]
},
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Left Right.sublime-macro"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "`$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^`", "match_all": true }
]
},
{
"keys": ["f1"], "command": "dired", "args": {
"immediate": true,
"single_pane": true,
"other_group": "left",
"project": true
}
},
{
"keys": ["enter"],
"command": "dired_select", "args": {"and_close": true},
"context": [
{ "key": "selector", "operator": "equal", "operand": "text.dired" },
{ "key": "setting.dired_rename_mode", "operand": false }
]
}
]
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"AdvancedNewFile",
"All Autocomplete",
"AutoFileName",
"Babel",
"Base16 Color Schemes",
"Better CoffeeScript",
"Better JavaScript",
"Bracketeer",
"BracketHighlighter",
"ChangeQuotes",
"Color Highlighter",
"DashDoc",
"Dayle Rees Color Schemes",
"DocBlockr",
"EditorConfig",
"Elixir",
"ElixirSublime",
"Emblem.js Syntax Highlighting",
"Emmet",
"Emmet Css Snippets",
"FileBrowser",
"Git",
"GitGutter",
"GitHub Flavored Markdown Preview",
"Handlebars",
"Highlight",
"LESS",
"MarkdownEditing",
"Material Theme",
"MultiEditUtils",
"Package Control",
"Pretty JSON",
"Pretty YAML",
"Ruby Slim",
"Sass",
"SCSS",
"Search in Project",
"SideBarEnhancements",
"Smart Match",
"Stylus",
"SublimeLinter",
"SublimeLinter-coffeelint",
"SublimeLinter-jscs",
"SublimeLinter-jshint",
"SublimeLinter-json",
"SublimeLinter-jsxhint",
"Theme - amCoder",
"Theme - Cobalt2",
"Theme - Flatland",
"Theme - Spacegray",
"Tomorrow Color Schemes"
]
}
{
"added_words":
[
"prototypal",
"mixin",
"screenshot",
"app",
"pagebreak",
"–",
"js",
"hbs",
"cli",
"lang=\"sh",
"init",
"lang=\"js",
"lang=\"hbs",
"const",
"templating",
"composable",
"addon",
"javascript",
"github",
"poteto",
"composability",
"changeset",
"changesets",
"validator",
"Ecto",
"blog",
"addons",
"validators"
],
"bold_folder_labels": true,
"caret_extra_bottom": 0,
"caret_extra_top": 0,
"caret_extra_width": 8,
"caret_style": "phase",
"color_scheme": "Packages/User/SublimeLinter/darkside-contrast (SL).tmTheme",
"detect_slow_plugins": false,
"draw_minimap_border": true,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".sass-cache",
"public/assets/source_maps",
"node_modules",
"bower_components",
"_build",
"deps",
"tmp",
".svn",
".git",
".hg",
"CVS",
".idea",
".svg",
".ttf",
".otf",
"tmp/*",
"dist",
"dist/*",
".divshot-cache"
],
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"JavaScript",
"Markdown",
"Theme - amCoder",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"material_theme_accent_pink": true,
"material_theme_compact_sidebar": true,
"material_theme_small_tab": true,
"rulers":
[
80
],
"show_full_path": true,
"tab_size": 2,
"tabs_border": true,
"theme": "Material-Theme-Darker.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment