Showing posts with label Sublime Text. Show all posts
Showing posts with label Sublime Text. Show all posts

Friday, April 18, 2014

Installing Sublime Text 3 Color Picker

Color Picker is a great tool to add into Sublime Text 3.

How many times do you want to see how a color change would look, but before you can you have to leave your editor? 

Well no more. Head on over and install this color picker for Sublime Text 3:


A great plugin to have that saves lots of time.

Once installed, the Color Picker can be invoked within Sublime Text 3 via:


Microsoft Windows: ctrl + shift + c

Mac OS X: cmd + shift + c

Linux: ctrl + shift + c

From there, you'll be able to make your choices. 


Happy pickings! 

Thursday, April 17, 2014

Guide to Installing Sublime Text Themes in Windows

     One of the quickest ways it install a theme is to place it directly into the necessary folder within your Sublime Text installation. This guide assumes you 1. Already have a theme file (.thTheme) and you know where it's saved to. 2. That you're running a version of Windows.

To install a theme:

1. Right-click and copy or paste the .thTheme file.

2. Go to this folder:  C:\Users\yourusername\AppData\Roaming\Sublime Text 2\Packages\ User

Note: The folder name for Sublime Text may vary by version, but will still be under C:\Users\yourusername\AppData\Roaming

3. Paste in the .thTheme file.

4. Restart Sublime Text if it was already opened. 

5. Open Sublime Text. Go to: Preferences -> Color Scheme and chose your recently installed theme.

There you have it. A quick way to install themes without using a package manager.


Tuesday, April 15, 2014

Camouflage Theme for Sublime Text

Hello,

I recently made my first theme for Sublime Text editor. It is called camouflage.

A screenshot of this theme in action:



The theme file (Camouflage.tmTheme) can be found on my GitHub at:


To install this theme:

Pull down the file from my GitHub or copy it and paste into a text editor and  then save it as Camouflage.tmTheme

Next you will copy the file into this directory assuming you're running a Window's OS: 

C:\Users\(YOURUSERNAMEHERE)\AppData\Roaming\Sublime Text 2\Packages\Color Scheme - Default

Note: Your version of Sublime Text could vary from mine. I'm currently running version 2 it appears...(need to update!) so the folder name may slightly vary. 

Once the file has been copied, you'll need to restart Sublime Text and then you can go to Preferences -> Color Scheme -> Camouflage to set it as your new color scheme. 

I've found this theme useful when working with strings and numbers. 

Note: This theme can also be used with Textmate editor on the Mac platform. 

For more information on installing and customizing Sublime Text, check out:


Mac users:


Linux users: (Ubuntu) 


Enjoy! 

Saturday, April 12, 2014

Installing Latest Version of Sublime Text 3 on Debian Systems

Hello,

A quick little guide of installing Sublime Text 3 on Debian Linux systems.

      For x86 systems:

1. Open up a terminal.

2. Type: wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3059_i386.deb

3. Type: sudo dpkg -i sublime-text_build-3059_i386.deb

       For x64 systems:

1. Open up a terminal.

2. Type: wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3059_amd64.deb

3. Type: sudo dpkg -i sublime-text_build-3059_amd64.deb

Congratulations! You now have Sublime Text 3 installed.

Note: In the above examples, 3059 is the current build number at the time of this writing. To check the build numbers and make sure you have the latest, check out: http://www.sublimetext.com/3 for a list of all the builds.

Happy text editing!

Tuesday, April 9, 2013

Installing Adobe Source Code Pro Font for Sublime Text 2



This guide will help you get Adobe’s Source Code Pro font installed for use with Sublime Text 2. More information about this font can be found here.

First, you will need to grab a copy of the font. It’s available for free at:


Next, you will want to install the font onto your system.

For Mac users,
  Open Font Book application.
              Chose the + button under Font.
              Locate and navigate to the font you would like to install.

For Windows users,
        Locate and navigate to where the font is saved.
        Select all desired fonts in the directory. CTRL+SHIFT.
        Right-click and chose install.

Congratulations! You now have the Adobe Source Code Pro font installed on your system. The next step will be getting it to work within Sublime Text 2 for some coding goodness.

To change font in Sublime Text 2,

       Open up Sublime Text 2.
       Click on Preferences menu and choose: Settings-User.
  Add in the following lines to this file:         

"font_face": "Source Code Pro",
"font_size": 12

        Save file to make changes. 

Note: If you look in Preferences menu/Settings-Default you can find many other things that can be changed within Sublime Text 2. Try your own customizations to fit your needs.

There you have it! You have now installed Adobe Source Code Pro and you’re ready to bang out some killer code!