Last active
March 29, 2021 20:44
-
-
Save vdonoladev/b55fc04a1d2ae9d92732bea2c321d63d to your computer and use it in GitHub Desktop.
Settings for Sublime Text
This file contains 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
{ | |
"Jekyll": | |
{ | |
"jekyll_auto_find_paths": true | |
}, | |
"always_show_minimap_viewport": true, | |
"auto_close_tags": true, | |
"auto_complete": true, | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
}, | |
{ | |
"characters": "/", | |
"selector": "string.quoted.double.html, string.quoted.single.html, source.css" | |
} | |
], | |
"auto_format_on_save": true, | |
"auto_indent": true, | |
"binary_file_patterns": | |
[ | |
"*.jpg", | |
"*.jpeg", | |
"*.png", | |
"*.gif", | |
"*.ttf", | |
"*.tga", | |
"*.dds", | |
"*.ico", | |
"*.eot", | |
"*.pdf", | |
"*.swf", | |
"*.jar", | |
"*.zip", | |
"node_modules/**", | |
"bower_components/**" | |
], | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"default_encoding": "UTF-8", | |
"draw_minimap_border": true, | |
"draw_white_space": "all", | |
"font_face": "Fira Code", | |
"font_size": 11, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Markdown", | |
"Markdown Preview", | |
"MarkdownHighlighting", | |
"SublimeLinter-contrib-eslint", | |
"Vintage" | |
], | |
"indent_guide_options": | |
[ | |
"draw_normal", | |
"draw_active" | |
], | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"overlay_scroll_bars": "disabled", | |
"rulers": 100, | |
"save_on_focus_lost": true, | |
"show_minimap": false, | |
"smart_indent": true, | |
"tab_completion": true, | |
"tab_size": 2, | |
"theme": "Material-Theme-Darker.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"word_wrap": true, | |
"wrap_width": 120 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment