Skip to content

Instantly share code, notes, and snippets.

@alsolovyev
Last active March 30, 2023 17:56
Show Gist options
  • Select an option

  • Save alsolovyev/c0ca85dfd0ca06131c230ffe347b9516 to your computer and use it in GitHub Desktop.

Select an option

Save alsolovyev/c0ca85dfd0ca06131c230ffe347b9516 to your computer and use it in GitHub Desktop.
Sublime Text 3 Settings

Sublime Text 3 Settings

  • Settings
  • Keymap
  • Bracket highlighter settings
{
"bracket_styles": {
"default": { "icon": "dot", "color": "region.yellowish brackethighlighter.default", "style": "underline" },
"unmatched": { "icon": "question", "color": "region.redish", "style": "outline" },
"curly": { "icon": "curly_bracket", "color": "region.purplish" },
"round": { "icon": "round_bracket", "color": "region.yellowish" },
"square": { "icon": "square_bracket", "color": "region.bluish" },
"angle": { "icon": "angle_bracket", "color": "region.orangish" },
"tag": { "icon": "tag", "color": "region.orangish", "style": "none" },
"c_define": { "icon": "hash", "color": "region.yellowish" },
"single_quote": { "icon": "single_quote", "color": "region.greenish" },
"double_quote": { "icon": "double_quote", "color": "region.greenish" },
"regex": { "icon": "star", "color": "region.greenish" }
}
}
[
{ "keys": ["ctrl+\\"], "command": "toggle_side_bar" },
{ "keys": ["super+shift+d"], "command": "duplicate_lines" },
{ "keys": ["ctrl+alt+f"], "command": "js_prettier" }
]
{
// System
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"enable_tab_scrolling": false,
// "hardware_acceleration": "none",
"hot_exit": "disabled",
"create_window_at_startup": false,
"overlay_scroll_bars": "enabled",
"remember_workspace": false,
// "scroll_speed": 0.1,
"show_full_path": false,
// Theme
// "color_scheme": "Packages/JaneRivas Theme/schemes/JaneRivas.tmTheme",
// "theme": "JaneRivas.sublime-theme",
// "color_scheme": "Mariana.sublime-color-scheme",
// "theme": "Adaptive.sublime-theme",
// "color_scheme": "GitHub Light.sublime-color-scheme",
// "theme": "Adaptive.sublime-theme",
// Editor
"auto_complete_commit_on_tab": true,
"auto_complete_selector": "",
"draw_indent_guides": false,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"highlight_line": true,
"indent_to_bracket": true,
"line_padding_bottom": 3,
"line_padding_top": 3,
"margin": 0,
"match_brackets": false,
"match_tags": false,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
// Font
"font_face": "Operator Mono Lig",
"font_options": ["dlig", "ss01", "no_round"],
"font_size": 14,
// Common
"file_exclude_patterns": ["yarn.lock"],
"folder_exclude_patterns": ["dist",],
"ignored_packages": ["Vintage"],
"vintage_start_in_command_mode": true,
// Hayaku
"hayaku_CSS_prefixes_disable": true,
//
/*"folder_exclude_patterns": ["dist"]*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment