Skip to content

Instantly share code, notes, and snippets.

@jochumdev
Created January 29, 2015 22:51
Show Gist options
  • Save jochumdev/cdf4c4e7fe87a0249f3f to your computer and use it in GitHub Desktop.
Save jochumdev/cdf4c4e7fe87a0249f3f to your computer and use it in GitHub Desktop.
My Sublime Install (going to replace it with atom.io).

My Sublime configuration

Installed Packages

One click install/remove/activate and deactivate of the most packages below.

Plugin for some git integration into sublime text

A Sublime Text 2/3 plugin to see git diff in gutter

I'm not using the version supplied with the default Package Control Channel as it doesn't work here.

Install instructions on Linux

pushd .
cd ~/.config/sublime-text-3/Packages/
git clone https://github.com/lxxdn/GitHubMarkdownPreview.git GitHubMarkdownPreview
popd
# Restart sublime

Update on Linux

pushd .
cd ~/.config/sublime-text-3/Packages/GitHubMarkdownPreview
git pull
popd
# Restart sublime

A set of handy tools to use Sublime Text 2+ with Github

A Golang plugin collection for the text editor SublimeText 2 providing code completion and other IDE-like features.

Enhancements to Sublime Text sidebar. Files and folders.

Sublime Text 2/3 plugin that provides a number of useful commands for GitHub.

Full-featured code intelligence and smart autocomplete engine

Interactive code linting framework for Sublime Text 3

SublimeLinter plugin for reStructuredText, using docutils.

SublimeLinter plugin for python, using flake8.

SublimeLinter plugin for python, using pylint.

SublimeREPL - run an interpreter inside ST2 (Clojure, CoffeeScript, F#, Groovy, Haskell, Lua, MozRepl, NodeJS, Python + virtualenv, R, Ruby, Scala...)

Save as root in SublimeText

Dark and light custom UI themes for Sublime Text - Great looking Sublime :)

My User/Preferences.sublime-settings

{
  	"color_scheme": "Packages/User/SublimeLinter/Monokai Soda (SL).tmTheme",
  	"font_size": 9,
  	"ignored_packages":
  	[
  		"SublimeLinter-pylint"
  	],
  	"soda_folder_icons": true,
  	"theme": "Soda Light 3.sublime-theme",
  	"translate_tabs_to_spaces": true,
  	"trim_trailing_white_space_on_save": true,
  	"word_wrap": "false"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment