Skip to content

Instantly share code, notes, and snippets.

@plembo
Last active August 17, 2019 16:29
Show Gist options
  • Save plembo/4945e3222771d88a56af5778ef6bc3b7 to your computer and use it in GitHub Desktop.
Save plembo/4945e3222771d88a56af5778ef6bc3b7 to your computer and use it in GitHub Desktop.
Sublime Text Setup

Sublime Text Setup

Notes on setting up Sublime Text.

  1. Install from binary or repo. Prefer repo on Linux. See Linux Package Manager Repositories. For Debian based Linux distros. Stable channel.
$ wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
$ sudo apt-get install apt-transport-https
$ echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list
$ apt update
$ apt install sublime-text sublime-merge
  1. Install Package Control. Preferences... Package Control.

  2. Install packages. Preferences... Package Control... Package Control: Install Package.

  • BracketHighlighter
  • Emmet
  • FileIcons
  • Git
  • MarkdownEditing
  • MarkdownPreview
  • Python 3
  • SidebarEnhancements
  • SublimeCodeIntel
  • SublimeLinter
  • SublimeLinter-flake8 (for python)
  • SublimeLinter-jshint (for node.js)
  • SublimeREPL
  • Terminal
  1. Select color scheme and theme.
  • Preferences... Color Scheme... Monokai
  • Preferences... Theme... Adaptive.sublime-theme
  1. Configure packages. Preferences... Package Settings... [Package Name].
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment