Skip to content

Instantly share code, notes, and snippets.

@wiky
Last active December 15, 2015 12:39
Show Gist options
  • Save wiky/5261404 to your computer and use it in GitHub Desktop.
Save wiky/5261404 to your computer and use it in GitHub Desktop.
My Favorite st2 plugins

Package Control

Sublime Package Control

import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to finish installation')

Sublime Text 3

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

Launch Sublime From the Terminal

sudo ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" /bin/subl

Plugin

  • Gist

  • Nodejs

  • DocBlockr

  • JSformat

  • sublimelinter

    { "sublimelinter_delay": 0.5, "sublimelinter_gutter_marks_theme": "bright", "sublimelinter_popup_errors_on_save": true }

  • JSHint Gutter

    {

    }

  • SideBar Enhancements

  • SFTP/FTP

    "remote_path": "/home/1080/work/intl-esite/deploy/",

Theme

Soda

{
    "theme": "Soda Dark.sublime-theme"
}

font

{
    "font_face": "consolas"
    // "font_face": "Monaco"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment