Below you’ll find a list of the packages I normally use in the text editor Sublime Text 3.
Press CTRL + SHIFT + P and then type “Install Package“.
WordPress
Theme
General
- Emmet
- SidebarEnhancements
- Alignment
- Trimmer
- Markdown Editing
- DocBlockr
- SASS
- BracketHighlighter
- WordCount
- FileDiffs
- CSS Format
- Search WordPress Codex
- SublimeLinter
- SublimeLinter-php
- SublimeLinter-phpcs
- SublimeLinter-jshint
- SublimeLinter-csslint
- SublimeLinter-json
- SublimeLinter-eslint
- Color Highlight
- ESLint
- JSON Stringify
- LockTab
- PHP-Twig
- Pretty JSON
- Terminal
- SublimePHPCompanion
If you are like me; kinda lazy when it comes to repetetive tasks with multiple setups etc, and you’d like things to automate itself – Create a file called Package Control.sublime-settings and place it in Sublime Text 3’s user spesific location.
- Windows: %APPDATA%\Roaming\Sublime Text 3\Packages\User
- MacOS: ~/Library/Application Support/Sublime Text 3/Packages/User
- Linux: ~/.config/sublime-text-3/Packages/User
Copy/paste the following snippet into the newly created file. With this file in place, Sublime Text 3 will automatically install the packages for you next time you open up the editor. Voila, no need to install all the packages manually 🤓
{
"bootstrapped": true,
"in_process_packages": [],
"installed_packages":
[
"Alignment",
"All Autocomplete",
"ayu",
"Babel",
"Babel Snippets",
"BracketHighlighter",
"Color Highlight",
"CSS Format",
"DocBlockr",
"Emmet",
"ESLint",
"FileDiffs",
"Format JSDoc @params",
"Function Name Display",
"Golang",
"JsFormat",
"JSON Stringify",
"JSX",
"Laravel Assertion Completions",
"Laravel Blade AutoComplete",
"Laravel Blade Highlighter",
"Laravel Docs",
"Laravel Goto",
"LockTab",
"MarkdownEditing",
"Package Control",
"PHP Companion",
"PHP Getters and Setters",
"PHP-Twig",
"Pretty JSON",
"React Coffee Snippets",
"React Development Snippets",
"React ES6 Snippets",
"React Native Autocomplete",
"React Templates",
"Sass",
"SideBarEnhancements",
"SublimeLinter",
"SublimeLinter-csslint",
"SublimeLinter-eslint",
"SublimeLinter-json",
"SublimeLinter-php",
"SublimeLinter-phpcs",
"SublimeLinter-stylelint",
"Terminal",
"Timenow",
"Trimmer",
"WordCount",
"WordPress",
"WordPress Generate Salts"
]
}