Skip to content

Instantly share code, notes, and snippets.

@abarrak
Created January 21, 2017 23:36
Show Gist options
  • Select an option

  • Save abarrak/aa905662fa82c1ff1b5de90405c386ea to your computer and use it in GitHub Desktop.

Select an option

Save abarrak/aa905662fa82c1ff1b5de90405c386ea to your computer and use it in GitHub Desktop.
SublimeText settings and plugins

Settings

// Settings ..
{
	"bold_folder_labels": true,
	"color_scheme": "Packages/Boxy Theme/schemes/Boxy Tomorrow.tmTheme",
	"ensure_newline_at_eof_on_save": true,
	"fade_fold_buttons": false,
	"file_exclude_patterns":
	[
		"*.pyc",
		"*.pyo",
		"*.exe",
		"*.dll",
		"*.obj",
		"*.o",
		"*.a",
		"*.lib",
		"*.so",
		"*.dylib",
		"*.ncb",
		"*.sdf",
		"*.suo",
		"*.pdb",
		"*.idb",
		".DS_Store",
		"*.class",
		"*.psd",
		"*.db",
		"*.sublime-workspace",
		".keep",
		".byebug_history"
	],
	"folder_exclude_patterns":
	[
		".svn",
		".git",
		".hg",
		"CVS",
		".bundle",
		"tmp",
		".sass-cache",
		"_site",
		"node_modules",
		"__pycache__",
		".cache"
	],
	"font_options":
	[
		"gray_antialias",
		"subpixel_antialias"
	],
	"font_size": 15,
	"highlight_modified_tabs": false,
	"ignored_packages":
	[
		"ASP",
		"C++",
		"Matlab",
		"OCaml",
		"Vintage"
	],
	"line_padding_bottom": 2,
	"line_padding_top": 2,
	"rulers":
	[
		100
	],
	"tab_size": 2,
	"theme": "Boxy Tomorrow.sublime-theme",
	"translate_tabs_to_spaces": true,
	"trim_trailing_white_space_on_save": true,
	"word_wrap": "true"
}

// Syntax Specific ..
// yml

// These settings override both User and Default settings for the YAML syntax
{
  "trim_automatic_white_space": false,
  "trim_trailing_white_space_on_save": false,
}

// md

// These settings override both User and Default settings for the Markdown syntax
{
  "trim_trailing_white_space_on_save": false,
}

Plugins

  • Alignment
  • All Autocomplete
  • Better CoffeeScript
  • Bootstrap 3 Autocomplete
  • Bootstrap 3 Snippets
  • BracketHighlighter
  • Color Highlighter
  • ColorPicker
  • DocBlockr
  • Emmet
  • ERB Autocomplete
  • Gist
  • Git
  • GitGutter
  • Glue
  • Haml
  • Liquid
  • Markdown Preview
  • Pretty Ruby
  • PyV8
  • REM PX
  • Sass
  • SideBarEnhancements
  • SublimeLinter
  • SublimeLinter-contrib-eslint
  • SublimeREPL
  • Terminal

Themes

  • Base 16 Color scheme
  • Boxy Theme
  • Material Theme
  • Agila Theme

KeyBinding

[
  { "keys": ["alt+up"], "command": "scroll_lines_fixed", "args" : {"by": "pages", "amount": 1.0 } },
  { "keys": ["alt+down"], "command": "scroll_lines_fixed", "args" : {"by": "pages", "amount": -1.0 } },
  { "keys": ["super+\\"], "command": "reindent"},
  { "keys": ["super+shift+a"], "command": "alignment" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment