Last active
January 28, 2021 10:57
-
-
Save mgrzaslewicz/cbf1d11d550cb0b709a31e642ffc610c to your computer and use it in GitHub Desktop.
Sublime plugins and 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
Show hidden characters
| # Open with PackageResourceViewer, color scheme default, monokai | |
| "globals": | |
| { | |
| "line_highlight": "color(hsl(148, 100%, 25%))", | |
| } | |
| # open with PackageResourceViewer, theme, default | |
| { | |
| "class": "minimap_control", | |
| "settings": ["always_show_minimap_viewport"], | |
| "viewport_color": [68, 200, 240, 96], | |
| "viewport_opacity": 1.0, | |
| }, |
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
| Convert case | |
| SideBarEnhancements | |
| BracketHighlighter | |
| ColorHighlighter | |
| All Autocomplete | |
| A file icon | |
| Pretty JSON | |
| Dockerfile Syntax Highlighting | |
| PackageResourceViewer | |
| ANSIescape |
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
| { | |
| "font_face": "JetBrains Mono", | |
| "font_options": | |
| [ | |
| "subpixel_antialias" | |
| ], | |
| "font_size": 8, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": | |
| [ | |
| ], | |
| "indent_guide_options": | |
| [ | |
| "draw_normal", | |
| "draw_active" | |
| ], | |
| "match_brackets_angle": true, | |
| "save_on_focus_lost": true, | |
| "trim_trailing_white_space_on_save": true, | |
| "folder_exclude_patterns": [ | |
| ".svn", | |
| ".git", | |
| ".hg" | |
| ], | |
| "binary_file_patterns": [ | |
| "*.jpg", | |
| "*.jpeg", | |
| "*.png", | |
| "*.gif", | |
| "*.ttf", | |
| "*.tga", | |
| "*.dds", | |
| "*.ico", | |
| "*.eot", | |
| "*.pdf", | |
| "*.swf", | |
| "*.jar", | |
| "*.zip" | |
| ], | |
| "draw_minimap_border": true, | |
| "always_show_minimap_viewport": true, | |
| "atomic_save": true, | |
| "tree_animation_enabled": false, | |
| "animation_enabled": false, | |
| "highlight_modified_tabs": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment