Last active
February 11, 2025 18:27
-
-
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", "Batch File", "Binary", "C#", "C++", "Clojure", "D", "Diff", "Erlang", "Graphviz", "Groovy", "Haskell", "Java", "LaTeX", "Lisp", "Lua", "Markdown", "Matlab", "Objective-C", "OCaml", "Pascal", "Perl", "PHP", "Python", "R", "Rails", "Ruby", "Rust", "Scala", "SQL", "TCL", "Textile", "Vintage", "XML", "YAML", | |
], | |
"theme": "Adaptive.sublime-theme", | |
"font_size": 15, | |
"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": true, | |
"line_padding_bottom": 0, | |
"line_padding_top": 0, | |
"tab_size": 2, | |
"auto_complete": true, | |
"auto_complete_delay": 150, | |
"auto_complete_triggers": [ | |
{"selector": "source.go", "characters": ".",}, | |
{"selector": "source.html | source.htmx", "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": false, | |
"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, | |
"enable_tab_scrolling": false, | |
"overlay_scroll_bars": "enabled", | |
"highlight_modified_tabs": true, | |
"gpu_window_buffer": false, | |
"memory_cache_size": 512, | |
"memory_cache_ttl": 300, | |
"draw_indent_guides": false, | |
"scroll_speed": 1.0, | |
"selection_description_column_type": "real", | |
"caret_style": "solid", | |
"draw_centered": false, | |
"syntax_override": { | |
"\\.htmx$": ["HTML"], | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment