
- SUBLIME TEXT INSTALL PACKAGE MANUAL
- SUBLIME TEXT INSTALL PACKAGE CODE
- SUBLIME TEXT INSTALL PACKAGE DOWNLOAD
~/Library/Application Support/Sublime Text 2/Packages
SUBLIME TEXT INSTALL PACKAGE MANUAL
However, sometimes plugins are not in the directory, so here is the manual approach.įirst off, find your Packages directory in your Application Support/Sublime Text 2 directory, for example: I highly recommend using the Package Manager as described in other answers as it's far more convenient for both installing and updating. All Package Control commands begin with Package Control:, so start by typing Package. To open the pallete, press Ctrl+ Shift+ p (Win, Linux) or CMD+ Shift+ p (OSX). Package Control is driven by the Command Pallete.
SUBLIME TEXT INSTALL PACKAGE DOWNLOAD

If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control:
SUBLIME TEXT INSTALL PACKAGE CODE
Once open, paste the appropriate Python code for your version of Sublime Text into the console.Ĭode for Sublime Text 3 import urllib.request,os pf = 'Package Control.sublime-package' ipp = sublime.installed_packages_path() _opener( _opener( ()) ) open(os.path.join(ipp, pf), 'wb').write(( '' + pf.replace(' ','%20')).read())Ĭode for Sublime Text 2 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( '' +pf.replace( ' ','%20' )).read()) print( 'Please restart Sublime Text to finish installation')įor the up-to-date installation code, please check Package Control Installation Guide. The console is accessed via the Ctrl+ ` shortcut or the View > Show Console menu. The simplest method of installation is through the Sublime Text console. Once you are done you can use the Ctrl + Shift + P shortcut in Sublime, type in install and press enter, then search for emmet.ĮDIT: You can now also press Ctrl + Shift + P right away and use the command 'Install Package Control' instead of following the install instructions. Or, an easier way would be to install the Package Control Plugin by wbond.

For example, an text editor with few colorful elements certainly distracts less than does one with many colorful tabs and buttons A bunch of code with appropriate syntax highlighting certainly helps more than one with pure black text in white background and more than one with overused colors.You should have a Data/Packages folder in your Sublime Text 2 install directory.Īll you need to do is download the plugin and put the plugin folder in the Packages folder. Settingsįrom my personal experience, a good appearance of code editor really improves the quality of my work.

This time, you may choose the installed color scheme in Preferences > Color Scheme > Tomorrow Color Schemes. The way of installation is exactly the same. It defines the color, style of text, etc. But for code editing, it is helpful to set a friendly color scheme that defines how different elements in programming codes should appear on the screen. The theme defines how Sublime Text should appear on the screen. Once you save the configuration file, the changes will take effect. To install it, just follow my previous instruction and choose Spacegray package, and modify Preferences > Settings - User by changing or adding "theme": "Spacegray.sublime-theme" to the settings. I like its design of simplicity that minimizes possible distraction from your work. I use Spacegray theme for my Sublime Text 3. It is amazing that nearly all change in settings can take effect immediately. You can customize your coding environment by installing packages or just modifying some settings. Once you choose a package and press Enter again, the package will be downloaded and enabled automatically. Now press Enter and you will find a very long list of packages available. Just press Ctrl+Alt+P, type Install and you will be directed to Package Control: Install Package command. It is very easy to install a package from the repositories. Once you install this package manager, the whole world of wonderful packages are open to you. If you need to extend the original simple code editor, you can go to View > Show Console and run a block of code provided here according to your version of Sublime Text. Sublime Text is by default equipped with its package manager: Package Control.

In this blog, I would like to introduce some of my favorite packages that leverage my productivity. Currently I use Sublime Text 3 and quite enjoy its simplicity and extensibility. Sublime Text is an extremely powerful text editor.
