Created
January 12, 2012 02:03
-
-
Save dustinhorton/1598083 to your computer and use it in GitHub Desktop.
custom settings for sublime text 2
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
{ | |
"color_scheme": "Packages/Color Scheme - Default/idleFingers.tmTheme", | |
"fallback_encoding": "UTF-8", | |
"font_face": "Monaco", | |
"font_size": 10, | |
"save_on_focus_lost": true, | |
"translate_tabs_to_spaces": true, | |
"trim_automatic_white_space": true, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": false, | |
// The mid-line characters to align in a multi-line selection, changing | |
// this to an empty array will disable mid-line alignment | |
"alignment_chars": ["=",":"], | |
// If the following character is matched for alignment, insert a space | |
// before it in the final alignment | |
"alignment_space_chars": ["=",":"] | |
} |
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
[ | |
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} } | |
] |
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
{ | |
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "*.esproj", "_assets", "img", "image", "fonts"], | |
"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.livereload"], | |
"theme": "Soda Dark.sublime-theme", | |
"show_tab_close_buttons": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment