Last active
April 5, 2021 11:04
-
-
Save if0rest/45be2de49723b926c092f05e8e8d51f3 to your computer and use it in GitHub Desktop.
Sublime Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
================== | |
Общие | |
================== | |
{ | |
"binary_file_patterns": | |
[ | |
"*.dds", | |
"*.eot", | |
"*.gif", | |
"*.ico", | |
"*.jar", | |
"*.jpeg", | |
"*.jpg", | |
"*.pdf", | |
"*.png", | |
"*.swf", | |
"*.tga", | |
"*.ttf", | |
"*.zip", | |
"node_modules/**" | |
], | |
"color_scheme": "Packages/Agila Theme/Agila Oceanic Next.tmTheme", | |
"fallback_encoding": "Cyrillic (Windows 1251)", | |
"font_face": "Fira Code", | |
"font_options": | |
[ | |
"gray_antialias" | |
], | |
"font_size": 10, | |
"hot_exit": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"index_files": false, | |
"line_padding_top": 2, | |
"match_brackets": false, | |
"match_brackets_angle": false, | |
"match_brackets_braces": false, | |
"match_brackets_content": false, | |
"match_brackets_square": false, | |
"match_tags": false, | |
"remember_open_files": true, | |
"show_encoding": true, | |
"tab_size": 3, | |
"theme": "Agila.sublime-theme", | |
"translate_tabs_to_spaces": false, | |
"trim_trailing_white_space_on_save": true, | |
"update_check": false | |
} | |
========================== | |
Key Bindings | |
========================== | |
[ | |
{ "keys": ["ctrl+alt+shift+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+alt+shift+down"], "command": "select_lines", "args": {"forward": true} }, | |
{ "keys": ["alt+shift+f"], "command": "reindent"}, | |
] | |
========================== | |
BracketHighlighter | |
========================== | |
{ | |
"high_visibility_enabled_by_default": true, | |
"high_visibility_style": "outline", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment