Skip to content

Instantly share code, notes, and snippets.

@KillerCodeMonkey
Last active April 1, 2016 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KillerCodeMonkey/55b2f23bc8712d6a33b7 to your computer and use it in GitHub Desktop.
Save KillerCodeMonkey/55b2f23bc8712d6a33b7 to your computer and use it in GitHub Desktop.
Sublime Text 3 - Plugins & Config
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