Skip to content

Instantly share code, notes, and snippets.

@Ajwah
Created April 8, 2015 20:24
Show Gist options
  • Save Ajwah/a2dbdd3a688213cef4d4 to your computer and use it in GitHub Desktop.
Save Ajwah/a2dbdd3a688213cef4d4 to your computer and use it in GitHub Desktop.
Sublime Text 3 Configurations
http://martineau.tv/2014/07/sublime-text-for-front-end-development/
http://www.sitepoint.com/10-essential-sublime-text-plugins-full-stack-developer/
http://ipestov.com/the-best-plugins-for-sublime-text/
https://css-tricks.com/sublime-text-front-end-developers/
Package Control
SublimeLinter https://github.com/SublimeLinter/SublimeLinter-jshint
scsslint https://packagecontrol.io/packages/SublimeLinter-contrib-scss-lint
& jshint are particularly useful.
MacTerminal https://github.com/afterdesign/MacTerminal
SublimeREPL https://github.com/wuub/SublimeREPL
DocBlockr https://github.com/spadgos/sublime-jsdocs
Git https://github.com/kemayo/sublime-text-git
GitGutter https://github.com/jisaacks/GitGutter
AllAutoComplete https://github.com/alienhard/SublimeAllAutocomplete
WebInspector https://github.com/sokolovstas/SublimeWebInspector
https://thewc.co/articles/view/web-inspector-tutorial
BracketHighlighter https://packagecontrol.io/packages/BracketHighlighter
AutoFileName https://github.com/BoundInCode/AutoFileName
AutoFullScreen
SideBarEnhancements https://github.com/titoBouzout/SideBarEnhancements
CSSComb
Gist
CanIUse
ColorHighLighter
GoTo anything
JSCS with Google Closure Style Configuration: add .jscsrc file in project. Put google.json in that file
Cobolt 2 Theme by WesBos
PasteAsColumns
Super-Awesome Paste
PackageResourceViewer https://www.sublimetext.com/forum/viewtopic.php?f=3&t=12973
http://i.imgur.com/T9ZylUD.gif
http://docs.sublimetext.info/en/latest/extensibility/snippets.html
(PackageReourceViewer aids in managing snippets)
To consider:
https://packagecontrol.io/packages/JavaScript%20%26%20NodeJS%20Snippets
@Ajwah
Copy link
Author

Ajwah commented Aug 23, 2015

Chaining multiple commands for keybindings
Example: Select an entire line and copy it with one keystroke.

-1 Install package Chain of Commands in package control
-2 Add following to keybindings:
{
"keys": ["super+option+c"],
"command": "chain",
"args": {
"commands": [
["expand_selection", {"to": "line"}],
["copy"]
]
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment