Created
August 23, 2012 13:18
-
-
Save mattbanks/3436510 to your computer and use it in GitHub Desktop.
Sublime Text 2 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
[ | |
{ "keys": ["super+alt+7"], "command": "encode_html_entities" }, | |
{ "keys": ["shift+ctrl+u"], "command": "title_case" }, | |
{ "keys": ["super+enter"], "command": "insert", "args": {"characters": "<br>\n"} }, | |
{ "keys": ["super+alt+l"], "command": "insert_snippet", "args": {"contents": "<li>${0:$SELECTION}</li>" } }, | |
{ "keys": ["super+alt+b"], "command": "insert_snippet", "args": {"contents": "<strong>${0:$SELECTION}</strong>" } }, | |
{ "keys": ["super+alt+i"], "command": "insert_snippet", "args": {"contents": "<em>${0:$SELECTION}</em>" } }, | |
{ "keys": ["super+alt+n"], "command": "insert_snippet", "args": {"contents": "<span>${0:$SELECTION}</span>" } }, | |
{ "keys": ["super+alt+down"], "command": "insert_snippet", "args": {"contents": "<sub>${0:$SELECTION}</sub>" } }, | |
{ "keys": ["super+alt+up"], "command": "insert_snippet", "args": {"contents": "<sup>${0:$SELECTION}</sup>" } } | |
] |
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
(Package Control first) | |
AdvancedNewFile | |
ApacheConf.tmLanguage | |
DocBlockr | |
Inc-Dec-Value | |
jQuery | |
jQuery Snippets | |
LESS | |
SCSS | |
SideBarEnchancements | |
sublime-github | |
SublimeLinter | |
WordPress | |
Zen Coding |
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/Color Scheme - Default/Monokai.tmTheme", | |
"font_size": 12, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"word_wrap": 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
{ | |
"sublimelinter_disable": [ "css" ], | |
"jshint_options": | |
{ | |
"evil": true, | |
"eqeqeq": true, | |
"immed": true, | |
"newcap": true, | |
"nomen": true, | |
"es5": true, | |
"rhino": true, | |
"undef": true, | |
"white": false, | |
"devel": true, | |
"browser": true, | |
"trailing": true, | |
"jquery": true, | |
"curly": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment