Last active
July 14, 2023 17:50
-
-
Save ZackStone/5089c487fa79c1daf745bc58ddb14244 to your computer and use it in GitHub Desktop.
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
... |
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
Theme - Cola | |
Alignment | |
AlignTab | |
All Autocomplete | |
AutoFileName | |
Bracket HighLighter | |
Color HighLighter | |
CSS3 | |
DocBlockr | |
Git | |
GitGutter | |
HTML-CSS-JS Prettify | |
jQuery | |
Markdown Extended | |
MarkdownLivePreview | |
Riot Tag | |
SidebarEnhancements | |
SublimeCodeIntel | |
SublimeLinter | |
SublimeLinter-jshint | |
SublimeLinter-pyflakes | |
SublimeLinter-pycodestyle |
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
{ | |
"font_face": "Fira Code", | |
"font_size": 13, | |
"theme": "Material-Theme-Darker.sublime-theme", | |
"color_scheme": "Monokai.sublime-color-scheme", | |
"always_show_minimap_viewport" : true, | |
"bold_folder_labels" : true, | |
"font_options" : ["gray_antialias", "subpixel_antialias"], // On retina Mac & Windows | |
"indent_guide_options" : ["draw_normal", "draw_active"], // Highlight active indent | |
"line_padding_bottom" : 1, | |
"line_padding_top" : 1, | |
"overlay_scroll_bars" : "enabled", | |
// Theme - Afterglow | |
"tabs_medium": true, | |
"sidebar_size_12": true, | |
"sidebar_row_padding_large": true, | |
"status_bar_brighter": true, | |
// Material Theme | |
"material_theme_accent_yellow": true, | |
// Panels | |
"material_theme_bright_scrollbars" : true, // Bright scrollbars puck color | |
"material_theme_contrast_mode" : true, // Enable sidebar and panels contrast mode | |
"material_theme_small_statusbar" : true, // Set small status bar | |
// Sidebar | |
"_material_theme_arrow_folders" : true, // Replace folder icons with arrows | |
"_material_theme_big_fileicons" : true, // Show bigger file type icons | |
"material_theme_bullet_tree_indicator" : true, // Set a bullet as active tree indicator | |
// Tabs | |
"_material_theme_bold_tab" : true, // Make the tab labels bolder | |
"material_theme_small_tab" : true, // Set small tabs | |
"material_theme_tabs_separator" : true, // Show tabs separator, this disables tab hover animation | |
"ignored_packages": | |
[ | |
"Vintage", | |
], | |
} | |
{ | |
"caret_style": "solid", | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
".DS_Store", | |
"*.pid", | |
"*.pyc" | |
], | |
"find_selected_text": true, | |
"folder_exclude_patterns": | |
[ | |
".git", | |
"__pycache__", | |
"env", | |
"env3" | |
], | |
"font_face": "Ubuntu Mono", | |
"font_size": 11, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"tab_size": 4, | |
"theme": "Cola.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"wide_caret": true | |
} |
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
// These settings override both User and Default settings for the Python syntax | |
{ | |
"rulers": | |
[ | |
72, | |
79 | |
], | |
"word_wrap": true, | |
"wrap_width": 80, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment