Last active
May 10, 2019 09:54
-
-
Save fgmacedo/9538b70bfb1e411ea852 to your computer and use it in GitHub Desktop.
sublime-settings
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
{ | |
"pep8_max_line_length": 99 | |
} |
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
{ | |
"ha_style": "filled" | |
} |
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
[ | |
{ "keys": ["f12"], "command": "goto_definition" }, | |
{ "keys": ["enter"], "command": "move", "args": {"by": "characters", "forward": true}, "context": | |
[ | |
{ "key": "following_text", "operator": "regex_match", "operand": "[\"')}\\]]+(.|$)", "match_all": true } | |
] | |
} | |
] |
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
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"A File Icon", | |
"Color Highlighter", | |
"ColorHelper", | |
"ColorPicker", | |
"Compare Side-By-Side", | |
"Djaneiro", | |
"Dockerfile Syntax Highlighting", | |
"Emmet", | |
"Git", | |
"GitGutter", | |
"Graphvizer", | |
"Hyperion for gettext", | |
"Indent XML", | |
"INI", | |
"Markdown Extended", | |
"MarkdownLivePreview", | |
"Material Theme", | |
"Origami", | |
"Package Control", | |
"PlainTasks", | |
"React IDE", | |
"React Templates", | |
"ReactJS", | |
"requirementstxt", | |
"RestructuredText Improved", | |
"Sass", | |
"SideBarEnhancements", | |
"SqlBeautifier", | |
"SublimeCodeIntel", | |
"SublimeLinter", | |
"SublimeLinter-flake8", | |
"Vagrant" | |
] | |
} |
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
{ | |
"color_scheme": "Packages/PlainTasks/tasks-solarized-dark.hidden-tmTheme", | |
// other bundled schemes: | |
// Packages/PlainTasks/tasks-dark.hidden-tmTheme | |
// Packages/PlainTasks/tasks-eighties-colored.hidden-tmTheme | |
// Packages/PlainTasks/tasks-eighties-dark.hidden-tmTheme | |
// Packages/PlainTasks/tasks-gray.hidden-tmTheme | |
// Packages/PlainTasks/tasks-monokai.hidden-tmTheme | |
// Packages/PlainTasks/tasks-solarized-dark.hidden-tmTheme | |
// Packages/PlainTasks/tasks-solarized-light.hidden-tmTheme | |
} |
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
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"copy_with_empty_selection": false, | |
"drag_text": false, | |
"draw_minimap_border": true, | |
"draw_white_space": "none", | |
"enable_tab_scrolling": true, | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Ubuntu Mono", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" | |
], | |
"font_size": 11, | |
"highlight_line": true, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"RestructuredText" | |
], | |
"line_padding_bottom": 2, | |
"line_padding_top": 2, | |
"match_brackets_content": true, | |
"match_selection": true, | |
"match_tags": true, | |
"open_files_in_new_window": false, | |
"overlay_scroll_bars": "enabled", | |
"preview_on_click": true, | |
"rulers": | |
[ | |
79, | |
99 | |
], | |
"scroll_past_end": true, | |
"scroll_speed": 5.0, | |
"show_encoding": true, | |
"show_full_path": true, | |
"show_line_endings": true, | |
"sidebar_size_13": true, | |
"status_bar_brighter": true, | |
"tabs_small": true, | |
"theme": "Material-Theme.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"wide_caret": true, | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment