Skip to content

Instantly share code, notes, and snippets.

@cristianciofu
Last active May 24, 2016 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cristianciofu/7907197 to your computer and use it in GitHub Desktop.
Save cristianciofu/7907197 to your computer and use it in GitHub Desktop.
Sublime Text 2 - installed packages + different personal settings
[
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+up"], "command": "duplicate_line" },
{ "keys": ["ctrl+shift+down"], "command": "duplicate_line" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+shift+d"], "command": "find_under_expand" },
{ "keys": ["ctrl+shift+k", "ctrl+shift+d"], "command": "find_under_expand_skip" },
{ "keys": ["ctrl+alt+shift+space"], "command": "expand_selection", "args": {"to": "scope"} },
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment"},
{ "keys": ["ctrl+,"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["f1"], "command": "goto_documentation" },
{ "keys": ["ctrl+shift+v"], "command": "clipboard_manager_choose_and_paste" },
{ "keys": ["f6"], "command": "expand_fqcn" },
{ "keys": ["shift+f6"], "command": "expand_fqcn", "args": {"leading_separator": true} },
{ "keys": ["f5"], "command": "find_use" },
{ "keys": ["f4"], "command": "import_namespace" },
{ "keys": ["shift+f12"], "command": "goto_definition_scope" },
{ "keys": ["ctrl+alt+shift+down"], "command": "goto_definition_scope" },
{ "keys": ["ctrl+shift+k"], "command": "toggle_tab_lock" },
{ "keys": ["ctrl+shift+tab"], "command": "extended_switcher", "args": {"list_mode": "window"} }
// { "keys": ["ctrl+shift+tab"], "command": "extended_switcher", "args": {"list_mode": "active_group"} }
]
[
{
"button": "button1",
"count": 1,
"modifiers": ["alt"],
"press_command": "drag_select",
"command": "goto_definition"
}
]
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"AdvancedNewFile",
"All Autocomplete",
"AutoFileName",
"BracketHighlighter",
"Clipboard Manager",
"DocBlockr",
"ExtendedTabSwitcher",
"Function Name Display",
"Git",
"GitGutter",
"LockTab",
"Package Control",
"PHP Companion",
"PHP Completions Kit",
"PHP-Twig",
"SideBarEnhancements",
"SyncedSideBar",
"Theme - Cobalt2",
"Theme - Nexus",
"Themr"
]
}
{
"auto_complete": true,
"bold_folder_labels": true,
"file_exclude_patterns":
[
".DS_Store"
],
"folder_exclude_patterns":
[
".git",
".idea"
],
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"tab_size": 4,
"translate_tabs_to_spaces": true,
"theme": "Cobalt2.sublime-theme"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment