Last active
December 29, 2015 04:29
-
-
Save jsven69gist/7615004 to your computer and use it in GitHub Desktop.
Sublime Text 2 Cheat Sheet
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
| Sublime Text 2 Cheat Sheet ;-) | |
| http://sublime-text-unofficial-documentation.readthedocs.org/en/sublime-text-2/index.html | |
| Packages/plugins: | |
| - "Package Control" -> https://sublime.wbond.net/installation#st2 | |
| - "AdvancedNewFile" -> Ctrl+Alt+n | |
| - "Emmet" - Used to be Zen Coding -> http://docs.emmet.io/ | |
| - "Emmet CSS Snippets" | |
| - "SublimeLinter" -> Remember to add path to PHP | |
| - "SublimeCodeIntel" -> Based on Komodo Open | |
| - "Theme Soda" -> (user settings: "theme": "Soda Dark.sublime-theme") | |
| - "Gist" | |
| - "DocBlokr" | |
| - "Theme - Phoenix" -> http://netatoo.github.io/phoenix-theme/ | |
| - BracketHighlighter -> https://github.com/facelessuser/BracketHighlighter | |
| - Goto Documentation -> https://github.com/kemayo/sublime-text-2-goto-documentation | |
| - Alignment -> https://github.com/wbond/sublime_alignment, http://wbond.net/sublime_packages/alignment | |
| - Nettuts Fetch -> https://github.com/weslly/Nettuts-Fetch | |
| - Laravel 4 Snippets | |
| - Blade Snippets | |
| - Dayle Rees Color Schemes | |
| Package Control: | |
| - https://sublime.wbond.net/ | |
| Essential Plugins etc: | |
| http://www.neverstopbuilding.com/sublime-plugins-for-php | |
| http://blog.stuartherbert.com/php/2012/02/28/setting-up-sublime-text-2-for-php-development/ | |
| http://net.tutsplus.com/tutorials/tools-and-tips/essential-sublime-text-2-plugins-and-extensions/ | |
| http://www.joepettersson.com/sublime-text-2-plugins/ | |
| Key Bindings - User: | |
| [ | |
| { "keys": ["ctrl+shift+g"], "command": "goto_documentation" }, | |
| { "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } }, | |
| { "keys": ["ctrl+down"], "command": "scroll_lines", "args": {"amount": -1.0 } } | |
| ] | |
| Settings - User: | |
| { | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/Color Scheme - Default/Cobalt.tmTheme", | |
| "font_size": 9.0, | |
| "highlight_line": true, | |
| "highlight_modified_tabs": true, | |
| "ignored_packages": | |
| [ | |
| "Vintage" | |
| ], | |
| "phoenix_color_darkblue": true, | |
| "phoenix_dirty_bottom_bar_red": true, | |
| "phoenix_tabs_medium": true, | |
| "scroll_speed": 5.0, | |
| "theme": "Phoenix Light.sublime-theme" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment