Skip to content

Instantly share code, notes, and snippets.

@FabianSchmick
Last active July 8, 2020 09:07
Show Gist options
  • Save FabianSchmick/78456d722f4c819042719adfa5897961 to your computer and use it in GitHub Desktop.
Save FabianSchmick/78456d722f4c819042719adfa5897961 to your computer and use it in GitHub Desktop.
Sublime config
[
{
"keys": ["ctrl+7"],
"command": "toggle_comment",
"args": {
"block": false
}
},
{
"keys": ["ctrl+shift+7"],
"command": "toggle_comment",
"args": {
"block": true
}
},
{
"keys": ["ctrl+shift+f"],
"command": "reindent",
"args": {
"single_line": false
}
},
{
"keys": ["enter"], "command": "commit_completion", "context": [
{ "key": "auto_complete_visible" }
]
},
{
"keys": ["tab"], "command": "commit_completion", "context": [
{ "key": "auto_complete_visible" }
]
},
]
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_with_fields": true,
"bold_folder_labels": false,
"default_encoding": "UTF-8",
"detect_indentation": true,
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".git",
".migraw",
".sass-cache"
],
"font_options":
[
"subpixel_antialias"
],
"font_size": 10,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"show_encoding": true,
"soda_classic_tabs": true,
"soda_folder_icons": false,
"tab_size": 4,
"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