Skip to content

Instantly share code, notes, and snippets.

@mmazzarolo
Last active January 23, 2020 23:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmazzarolo/82a9585ca1bfb569b12e to your computer and use it in GitHub Desktop.
Save mmazzarolo/82a9585ca1bfb569b12e to your computer and use it in GitHub Desktop.
My Sublime3 settings
[
{ "keys": ["f12"], "command": "reindent", "args": {"single_line": false} },
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+d"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+f"], "command": "reindent", "args": {"single_line": false}},
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl+alt+j"], "command": "join_lines" },
{ "keys": ["ctrl+alt+down"], "command": "duplicate_line" },
{ "keys": ["ctrl+alt+up"], "command": "duplicate_line" },
{ "keys": ["ctrl+alt+m"], "command": "toggle_menu" },
]
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"Base16 Color Schemes",
"Color Highlighter",
"Git",
"GitGutter",
"Jade",
"JavaScriptNext - ES6 Syntax",
"JsFormat",
"Package Control",
"SideBarEnhancements",
"Theme - Spacegray"
]
}
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme",
"detect_indentation": false,
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"find_selected_text": true,
"font_face": "Inconsolata",
"font_options":
[
"subpixel_antialias"
],
"font_size": 12.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"soda_folder_icons": false,
"status_bar_brighter": true,
"tab_size": 2,
"theme": "Spacegray.sublime-theme",
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment