Last active
April 1, 2016 19:47
-
-
Save KillerCodeMonkey/55b2f23bc8712d6a33b7 to your computer and use it in GitHub Desktop.
Sublime Text 3 - Plugins & Config
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
Plugins: | |
======== | |
AdvancedNewFile | |
AngularJS | |
Babel | |
BracketHighlighter | |
DocBlockr | |
Emmet | |
Git | |
GitGutter | |
Grunt | |
Less | |
Markdown Preview | |
Sass | |
SidebarEnhancements | |
SublimeLinter | |
SublimeLinter-JSHint --> requires `npm i -g jshint` | |
TypeScript | |
Themes: | |
======= | |
Material Theme | |
Material Theme - Appbar | |
User Config: | |
============ | |
{ | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme", | |
"detect_indentation": true, | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"fallback_encoding": "UTF-8", | |
"font_size": 10, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_to_bracket": true, | |
"show_encoding": true, | |
"tab_size": 4, | |
"theme": "Material-Theme-Darker.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true | |
} | |
User Keybindings (fix toggle comment shortcuts) | |
================ | |
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment