The value of knowledge lies not in possession, but in share.

0%

Sublime Text Personalization

Fonts:Source Code Pro

Source Code Pro: A perfect programming font

https://github.com/adobe/source-code-pro

For Mac:

Double-click the font (SourceCodeVariable.ttf) in the Finder, then click Install Font in the font preview window that opens. After your Mac validates the font and opens the Font Book app, the font is installed and available for use.

For Linux:

copy the fonts to /usr/share/fonts and run sudo fc-cache to rebuild the font cache

For Win:

copy the fonts to C:\Windows\Fonts and Double-click the font

Color scheme:Solarized

https://github.com/braver/Solarized

The easiest way to install is using Sublime Package Control, where Solarized is listed as Solarized Color Scheme.

  1. Open Command Palette using menu item Tools -> Command Palette... (⇧⌘P on Mac)
  2. Choose Package Control: Install Package
  3. Find Solarized Color Scheme and hit Enter

How to Activate

Activate the UI theme and color scheme by modifying your user preferences file, which you can find using the menu item Sublime Text -> Preferences -> Settings - User (⌘, on Mac).

Indentation

1
2
3
4
5
6
// The number of spaces a tab is considered equal to
"tab_size": 4,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
//Set automatically when saving
"expand_tabs_on_save": true

Mine

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"color_scheme": "Packages/Solarized Color Scheme/Solarized (light).tmTheme",
"font_face": "Source Code Pro",
"font_size": 11,
"ignored_packages":
[
"Vintage"
],
"theme": "Default.sublime-theme",

"tab_size": 4,
"translate_tabs_to_spaces": true,
"expand_tabs_on_save": true

}

🍭支持一根棒棒糖吧!