Skip to content

Instantly share code, notes, and snippets.

@robert-wettstaedt
Last active January 11, 2017 22:09
Show Gist options
  • Save robert-wettstaedt/0cd41dedea8c8799e968 to your computer and use it in GitHub Desktop.
Save robert-wettstaedt/0cd41dedea8c8799e968 to your computer and use it in GitHub Desktop.
Sublime settings
[
{
"keys": ["super+i"],
"command": "reindent"
},
{
"keys": ["super+7"],
"command": "toggle_comment"
},
{
"keys": ["super+d"],
"command": "duplicate_line"
},
{
"keys": ["super+e"],
"command": "find_under_expand"
},
{
"keys": ["super+backspace"],
"command": "run_macro_file",
"args": {
"file": "res://Packages/Default/Delete Line.sublime-macro"
}
},
{
"keys": ["shift+alt+up"],
"command": "swap_line_up"
},
{
"keys": ["shift+alt+down"],
"command": "swap_line_down"
},
{
"keys": ["ctrl+<"],
"command": "show_panel",
"args": {
"panel": "console",
"toggle": true
}
},
{
"keys": ["ctrl+y"],
"command": "show_panel",
"args": {
"panel": "output.exec",
"toggle": true
}
},
{
"keys": ["super+g"],
"command": "show_overlay",
"args": {
"overlay": "goto",
"text": ":"
}
},
{
"keys": ["super+."],
"command": "edit_settings",
"args": {
"base_file": "${packages}/Default/Default ($platform).sublime-keymap",
"default": "[\n\t$0\n]\n"
}
}
]
{
"bold_folder_labels": true,
"color_inactive_tabs": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"draw_indent_guides": true,
"draw_white_space": "all",
"folder_exclude_patterns":
[
],
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"font_size": 15,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"material_theme_accent_red": true,
"material_theme_appbar_red": true,
"material_theme_bold_tab": true,
"material_theme_compact_sidebar": true,
"material_theme_contrast_mode": true,
"material_theme_small_statusbar": true,
"material_theme_tabs_autowidth": true,
"material_theme_tree_headings": true,
"overlay_scroll_bars": "enabled",
"show_offscreen_bracket_popup": true,
"sidebar_row_padding_medium": true,
"sidebar_size_12": true,
"tabs_small": 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