Skip to content

Instantly share code, notes, and snippets.

@rorcraft
Forked from jaredatron/Base File.sublime-settings
Last active September 27, 2015 18:38
Show Gist options
  • Save rorcraft/1314816 to your computer and use it in GitHub Desktop.
Save rorcraft/1314816 to your computer and use it in GitHub Desktop.
Default (OSX).sublime-keymap
{
"color_scheme": "Packages/Color Scheme - Default/Sunburst.tmTheme",
"detect_indentation": false,
"ensure_newline_at_eof_on_save": true,
"font_face": "Menlo",
"font_size": 11.0,
"ignored_packages":
[
"Vintage"
],
"rulers":
[
100
],
"save_on_focus_lost": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"use_simple_full_screen": true,
"word_wrap": false,
/* What engine to use; one of grep, ack, the_silver_searcher, or git_grep (or find_str, on Windows) */
/* The default is grep because it's widely available on *nix machines, but ack and The Silver Searcher are both faster, */
/* and git grep is also faster, but only works inside a Git repository */
"search_in_project_engine": "the_silver_searcher",
/* Grep configuration */
/* Path to grep executable; if the standard one doesn't work for you, you can specify an explicit path in your user config file. */
"search_in_project_Grep_path_to_executable": "grep",
/* Do NOT change these options; they are expected to be present for SearchInProject to work correctly. */
"search_in_project_Grep_mandatory_options": "-nr",
/* Specify additional options to be used with all searches here. */
"search_in_project_Grep_common_options": "",
/* Ack configuration */
"search_in_project_Ack_path_to_executable": "ack",
"search_in_project_Ack_mandatory_options": "",
"search_in_project_Ack_common_options": "--type-add coffeescript=.coffee --type-add haml=.haml --type-add sass=.sass --type-add scss=.scss",
/* TheSilverSearcher configuration */
"search_in_project_TheSilverSearcher_path_to_executable": "ag",
"search_in_project_TheSilverSearcher_mandatory_options": "--column --search-files --nogroup --nocolor",
/* GitGrep configuration */
"search_in_project_GitGrep_path_to_executable": "git grep",
"search_in_project_GitGrep_mandatory_options": "--line",
/* FindStr configuration */
"search_in_project_FindStr_path_to_executable": "findstr",
"search_in_project_FindStr_mandatory_options": "/n /s"
}
[
{ "keys": ["shift+tab"], "command": "auto_complete" },
{ "keys": ["super+alt+]"], "command": "align_assignments" },
{ "keys": ["ctrl+shift+j]"], "command": "join_lines" },
{ "keys": ["super+alt+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"} },
{ "keys": ["ctrl+super+r"], "command": "reveal_in_side_bar" },
{ "keys": ["ctrl+shift+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+t"], "command": "goto_recent" },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["super+ctrl+w"], "command": "close_all" },
{ "keys": ["super+ctrl+alt+d"], "command": "toggle_side_bar" },
{ "keys": ["super+ctrl+shift+f"], "command": "toggle_full_screen" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment