Skip to content

Instantly share code, notes, and snippets.

@razouck
Last active June 3, 2018 22:22
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 razouck/53776305ac95e2797113 to your computer and use it in GitHub Desktop.
Save razouck/53776305ac95e2797113 to your computer and use it in GitHub Desktop.
Sublime Text - Quick settings
[
{ "keys": ["ctrl+'"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["ctrl+\\"], "command": "show_overlay", "args": {"overlay": "goto", "text": "#"} },
{ "keys": ["ctrl+;"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+alt+h"], "command": "toggle_side_bar" }
]
{
"cmd": ["/usr/bin/node", "$file"],
"selector": "source.js"
}
{
"always_show_minimap_viewport": true,
"auto_complete_commit_on_tab": true,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},
{
"characters": ".",
"selector": "source.js"
}
],
"auto_complete_with_fields": true,
"auto_match_enabled": true,
"bold_folder_labels": true,
"caret_extra_width": 1,
"caret_style": "blink",
"drag_text": false,
"draw_indent_guides": true,
"draw_minimap_border": false,
"enable_telemetry": false,
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"highlight_line": false,
"ignored_packages":
[
],
"indent_guide_options":
[
"draw_active",
"draw_normal"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"match_brackets_angle": true,
"overlay_scroll_bars": "enabled",
"preview_on_click": false,
"rulers":
[
111
],
"scroll_past_end": false,
"show_encoding": true,
"tab_size": 4,
"theme": "Adaptive.sublime-theme",
"translate_tabs_to_spaces": false,
"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