Last active
September 21, 2020 14:41
-
-
Save audetcameron/b160699e9de6608ae10c18eb89c81290 to your computer and use it in GitHub Desktop.
My Sublime Text Setup
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
## old macbook | |
### settings | |
```json | |
{ | |
"Seti_SB_big": true, | |
"Seti_SB_bright": true, | |
"Seti_orange_label": true, | |
"animation_enabled": false, | |
"binary_file_patterns": | |
[ | |
"*.dds", | |
"*.eot", | |
"*.gif", | |
"*.ico", | |
"*.jar", | |
"*.jpeg", | |
"*.jpg", | |
"*.pdf", | |
"*.png", | |
"*.swf", | |
"*.tga", | |
"*.ttf", | |
"*.zip", | |
"*.scssc", | |
"node_modules/**", | |
"bower_components/**" | |
], | |
"caret_extra_bottom": 3, | |
"caret_extra_top": 3, | |
"caret_extra_width": 2, | |
"color_scheme": "Packages/Scheme/Seti.tmTheme", | |
"default_line_ending": "system", | |
"draw_white_space": "selection", | |
"file_exclude_patterns": | |
[ | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db", | |
"*.sublime-workspace" | |
], | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS" | |
], | |
"font_size": 12, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"index_exclude_patterns": | |
[ | |
"*.log", | |
"node_modules/**", | |
"bower_components/**", | |
"nova-components/*/node_modules/**", | |
".git/*" | |
], | |
"overlay_scroll_bars": "enabled", | |
"show_git_status": false, | |
"tab_size": 2, | |
"theme": "Seti Monokai.sublime-theme", | |
"tree_animation_enabled": false, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": "false" | |
} | |
``` | |
## Packages | |
```json | |
"ApacheConf", | |
"ApplySyntax", | |
"Babel", | |
"Babel Snippets", | |
"BracketHighlighter", | |
"Color Highlighter", | |
"DotENV", | |
"FileDiffs", | |
"Handlebars", | |
"Laravel Blade Highlighter", | |
"Liquid", | |
"Package Control", | |
"PHP Companion", | |
"PHP-Twig", | |
"Pretty JSON", | |
"React Create Component", | |
"React Templates", | |
"Sass", | |
"Seti_UI", | |
"SideBarEnhancements", | |
"Slugify", | |
"Theme - Seti Monokai", | |
"View In Browser", | |
"Vue Syntax Highlight" | |
``` | |
## Key Bindings | |
``` | |
[ | |
{ "keys": ["alt+shift+f"], "command": "reindent", "args": {"single_line": false}}, | |
{ "keys": ["f5"], "command": "find_use" }, | |
{ "keys": ["ctrl+k", "ctrl+t"], "command": "title_case"}, | |
{ "keys": ["ctrl+k", "ctrl+s"], "command": "slugify"}, | |
{ "keys": [ "ctrl+alt+m" ], "command": "un_pretty_json"} | |
] | |
``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment