Skip to content

Instantly share code, notes, and snippets.

@dvnguyen
Last active December 29, 2016 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvnguyen/aa466b953b34cb3bc936 to your computer and use it in GitHub Desktop.
Save dvnguyen/aa466b953b34cb3bc936 to your computer and use it in GitHub Desktop.
Sublime Text - Settings
// Windows Setup
{
"added_words":
[
"Evernote"
],
"auto_complete_commit_on_tab": true,
"auto_complete_delay": 50,
"auto_complete_triggers":
[
{
"characters": "ng-controller=\"*",
"selector": "punctuation.definition.string"
}
],
"auto_complete_with_fields": true,
"bold_folder_labels": true,
"caret_extra_bottom": 2,
"caret_extra_top": 2,
"caret_extra_width": 1,
"caret_style": "phase",
"color_scheme": "Packages/Theme - Cobalt2/cobalt2.tmTheme",
"detect_slow_plugins": false,
"fade_fold_buttons": false,
"file_exclude_patterns":
[
".DS_Store"
],
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS"
],
"font_face": "Operator Mono Light",
"font_size": 10.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"CSS",
"JavaScript Snippets",
"Vintage",
"Vintageous"
],
"ignored_words":
[
"Deadlift",
"Roundtable",
"Webinar",
"Webinars",
"dvnguyen",
"webinar",
"webinars"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"rulers":
[
80
],
"match_brackets": false,
"match_brackets_angle": false,
"match_brackets_braces": false,
"match_brackets_content": false,
"match_brackets_square": false,
"match_tags": false,
"sidebar_font_small": true,
"sidebar_medium": true,
"theme": "Cobalt2.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"vintageous_use_ctrl_keys": false,
"wide_caret": true,
"word_wrap": false
}

Sublime Text Settings

Theme

{
  "color_scheme": "Packages/Theme - Cobalt2/cobalt2.tmTheme",
  "theme": "Cobalt2.sublime-theme"

Font Styling

{
  "font_face": "Inconsolata",
	"font_size": 13.0,
	"line_padding_bottom": 1,
	"line_padding_top": 1
}

Font Face

  • CamingoCode
  • Inconsolata (active)
  • DejaVu Sans Mono
  • Input Mono
  • M+ 2m
  • Source Code Pro
  • Ubunto Mono

Caret Styling

{
	"caret_style": "phase",
	"wide_caret": true
}

Visual Aids

{
	"fade_fold_buttons": false,
	"highlight_line": "true",
	"highlight_modified_tabs": true,
	"indent_guide_options":
	[
		"draw_normal",
		"draw_active"
	],
	"rulers":
	[
		100	// Set based on the Airbnb Styling Guide
	],
	"sidebar_font_small": true,
	"sidebar_medium": true,
	"tab_size": 2,
	"word_wrap": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment