Last active
January 30, 2025 04:55
-
-
Save zeroidentidad/025daa813f1f9954d5f9b76402c87e8f to your computer and use it in GitHub Desktop.
Sublime Text config optimizations
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
Show hidden characters
{ | |
"color_scheme": "Adaptify Dark.sublime-color-scheme", | |
"ignored_packages": ["ActionScript", "AppleScript", "ASP", "C#", "C++", "Clojure", "D", "Erlang", "Graphviz", "Groovy", "Haskell", "Java", "LaTeX", "Lisp", "Lua", "Markdown", "Matlab", "Objective-C", "OCaml", "Pascal", "Perl", "PHP", "Python", "R", "Rails", "Ruby", "Rust", "Scala", "Vintage", "XML", "YAML", | |
], | |
"theme": "Adaptive.sublime-theme", | |
"font_size": 13, | |
"font_face": "JetBrains Mono", | |
"index_files": false, | |
"index_workers": 0, | |
"index_exclude_patterns": ["*.log", "node_modules/*", "vendor/*"], | |
"folder_exclude_patterns": ["node_modules", "vendor", ".git"], | |
"word_wrap": true, | |
"highlight_line": false, | |
"line_padding_bottom": 0, | |
"line_padding_top": 0, | |
"tab_size": 2, | |
"auto_complete": true, | |
"auto_complete_delay": 300, | |
"auto_complete_triggers": [{"selector": "source.go", "characters": ".",}], | |
"auto_match_enabled": false, | |
"show_definitions": false, | |
"detect_indentation": true, | |
"trim_trailing_white_space_on_save": true, | |
"save_on_focus_lost": false, | |
"fade_fold_buttons": false, | |
"show_encoding": false, | |
"show_line_endings": false, | |
"show_tab_close_buttons": true, | |
"spell_check": false, | |
"scroll_past_end": false, | |
"preview_on_click": false, | |
"draw_white_space": "none", | |
"file_history_size": 5, | |
"update_check": false, | |
"ignore_update_check": true, | |
"show_full_path": false, | |
"hardware_acceleration": "none", | |
"memory_full_index": false, | |
"animation_enabled": false, | |
"tree_animation_enabled": false, | |
"scroll_speed": 0, | |
"smooth_scrolling": false, | |
"draw_shadows": false, | |
"draw_minimap_border": false, | |
"always_show_minimap_viewport": false, | |
"bold_folder_labels": false, | |
"status_bar_brighter": true, | |
"syntax_override": { | |
"\\.htmx$": ["HTML"], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment