-
Install the GPG key:
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
-
Ensure apt is set up to work with https sources:
sudo apt-get install apt-transport-https
-
Select the channel to use:
-
Stable
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
-
Dev
echo "deb https://download.sublimetext.com/ apt/dev/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
-
-
Update apt sources and install Sublime Text
sudo apt-get update sudo apt-get install sublime-text
- Open the
Tools
menu - Select
Install Package Control…
ctrl+shift+p
- Type
Install Package Control
, pressenter
- Search and Install
SublimeLinter
: The code linting framework for Sublime Text 3SublimeLinter-php
: SublimeLinter 3 plugin for PHP, using php-l.
- Dracula
- Gitlens
- hide gitlens button on tab bar
// setting.json
"gitlens.menus": {
"editorGroup": {
"blame": false,
"compare": false
}
},
- Prettier
- prettier does not format code
# settings.json
"editor.defaultFormatter": "esbenp.prettier-vscode"
- command line will let you pick which package is symlinked to
/usr/bin/vim
update-alternatives --config vim