├── tips.md ├── back-end.md ├── README.md └── front-end.md /tips.md: -------------------------------------------------------------------------------- 1 | # Tips and tricks 2 | 3 | ## Select multiple lines 4 | -------------------------------------------------------------------------------- /back-end.md: -------------------------------------------------------------------------------- 1 | # Best Back End Sublime Text Plugins 2 | 3 | * Origami (for multiple panels on the same window) 4 | * Pretty JSON 5 | * Trailing Spaces 6 | * Trimmer 7 | * SideBarGit 8 | * [SublimeREPL](https://github.com/wuub/SublimeREPL) 9 | * [SublimeCodeIntel](https://github.com/SublimeCodeIntel/SublimeCodeIntel) 10 | 11 | ## PHP 12 | 13 | * SublimePHPCS 14 | * SublimePHPIntel 15 | 16 | ### WordPress 17 | 18 | ### Laravel 19 | 20 | * Laravel Blade Highlighter 21 | 22 | ## Ruby 23 | 24 | ### Rails 25 | 26 | ## Some good snippets 27 | 28 | ### Goto on right-click 29 | 30 | Create a file named "`Default (Linux).sublime-mousemap`" at `Packages/User/` folder. Change **Linux** to your OS (Windows|Linux|OS X), if necessary. 31 | 32 | Using your editor, put this configuration: 33 | 34 | ```json 35 | [ 36 | { 37 | "button": "button2", 38 | "count": 1, 39 | "modifiers": ["ctrl"], 40 | "press_command": "drag_select", 41 | "command": "goto_definition" 42 | } 43 | ] 44 | ``` 45 | 46 | Save it and restart Sublime. Now you can right-click in some function and go to their implementation! 47 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Sublime Text 2 | It's a collection of plugins and tips for all kind of developers build your own pack. 3 | 4 | 5 | # Sublime Initial Config 6 | 1. First of all download the [program here!](https://www.sublimetext.com/3) and after install it; 7 | 2. The next step is install the Package Control: Copy the text from here and paste in the console; 8 | 9 | > For open the console you need to follow this: At the top of the window **'view > show console'** (after it close and open the program); 10 | 11 | 3. Show Sidebar: view > sidebar > showsidebar. 12 | 13 | > Sidebar it's very nice to manage so many projects by an easy way and it's a good option for navigate at folders 14 | 15 | 16 | ## Themes 17 | 18 | * [Material Theme](https://github.com/equinusocio/material-theme): install package > material theme. 19 | 20 | After go to **'Preferences > Settings User'** and paste 21 | 22 | ``` 23 | "theme": "Material-Theme.sublime-theme", 24 | "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", 25 | ``` 26 | 27 | 28 | ## What kind of developer you are? 29 | 30 | - [Front end](front-end.md) 31 | - [Back end](back-end.md) 32 | 33 | 34 | ## Essential Plugins 35 | * [Emmet](https://github.com/emmetio/emmet) 36 | * [EditorConfig](https://github.com/sindresorhus/editorconfig-sublime) 37 | 38 | 39 | ### Send a pull request with your list \o 40 | -------------------------------------------------------------------------------- /front-end.md: -------------------------------------------------------------------------------- 1 | # Best Front End Sublime Text Plugins 2 | 3 | 4 | ### Angular JS 5 | 6 | ### CSS 7 | * [ColorHighlighter](https://github.com/Monnoroch/ColorHighlighter) 8 | * [CSS3](https://packagecontrol.io/packages/CSS3) 9 | * [Autoprefixer](https://github.com/sindresorhus/sublime-autoprefixer) 10 | 11 | ### Compass 12 | * [Compass](https://github.com/whatwedo/sublime-text-compass) 13 | 14 | ### GitHub 15 | * [Git](https://github.com/kemayo/sublime-text-git) 16 | * [GitGutter](https://github.com/jisaacks/GitGutter) 17 | * [GitIgnore](https://packagecontrol.io/packages/Gitignore) 18 | 19 | ### Gulp 20 | * [Gulp Snippets](https://packagecontrol.io/packages/Gulp) 21 | * Gulp: Set Key Binding (Preferences > Key Bindings - User) { "keys": ["ctrl+alt+g"], "command": "gulp", "args": { "task_name": "default" } } 22 | 23 | ### HTML 24 | * [Emmet](http://emmet.io/) 25 | * [HTMLAttributes](https://github.com/agibsonsw/HTMLAttributes/blob/master/HTMLAttributes.sublime-completions) 26 | 27 | ### JavaScript 28 | * [JavaScript Completions](https://packagecontrol.io/packages/JavaScript%20Completions) 29 | 30 | ### Less 31 | 32 | ### Produtividade 33 | * [AlignTab](https://github.com/randy3k/AlignTab) 34 | * [AutoFileName](https://github.com/BoundInCode/AutoFileName) 35 | * [Bracket Highlighter](https://github.com/facelessuser/BracketHighlighter) 36 | * [ColorSublime](http://colorsublime.com/) 37 | * [ColorSublime - Themes](http://colorsublime.com/how-to-install-a-theme) 38 | * [EditorConfig](https://github.com/sindresorhus/editorconfig-sublime) 39 | * [FilterLines](https://github.com/davidpeckham/sublime-filterlines) 40 | * [SFTP](https://packagecontrol.io/packages/SFTP) 41 | * [SublimeOnSaveBuild](https://packagecontrol.io/packages/SublimeOnSaveBuild) 42 | 43 | ### React 44 | 45 | ### SASS 46 | * [SASS Snippets](https://packagecontrol.io/packages/SASS%20Snippets) 47 | * [SCSS Snippets](https://packagecontrol.io/packages/SCSS%20Snippets) 48 | 49 | ### Stylus 50 | --------------------------------------------------------------------------------