insoul
1/6/2013 - 4:28 PM

Preference for Sublime Text 2. Install Package Control and add next packages. Soda theme and color scheme, SublimeLinter, Git

Preference for Sublime Text 2. Install Package Control and add next packages. Soda theme and color scheme, SublimeLinter, Git

{
	// global settings
	"theme": "Soda Light 3.sublime-theme",
	"folder_exclude_patterns":
	[
		".idea",
		".bundle",
		".git",
		"log"
	],
	"file_exclude_patterns":
	[
		".DS_Store",
		".gitmodules",
		".git",
		".gitkeep",
		"*.tar.gz",
		"*.zip",
		"*.jar",
		"*.rpm",
		"*.gem"
	],

	// file settings
	"auto_indent": true,
	"tab_size": 2,
	"translate_tabs_to_spaces": true,
	"use_tab_stops": true,
	"trim_automatic_white_space": true,
	"detect_indentation": true,
	"draw_white_space": "selection",
	"trim_trailing_white_space_on_save": false,

	// visual settings
	"color_scheme": "Packages/User/Espresso Soda.tmTheme",
	"font_size": 10,
	"font_face": "Menlo",
	"font_options": "no_antialias",
	"gutter": true,
	"rulers": [100],
	// "line_padding_top": 4,
	// "line_padding_bottom": 0,
	"scroll_past_end": true,
	"line_numbers": true,
	"word_wrap": false,
	"wrap_width": 100,
	"indent_subsequent_lines": false,

	// automatic behaviors
	"auto_match_enabled": true,
	"find_selected_text": true,
	"ensure_newline_at_eof_on_save": false,

	// others
	"preview_binary_files": false,
	"tree_animation_enabled": true,

	// package control
	"ignored_packages":
	[
		"Vintage"
	],

	// git
	"git_binary": "/usr/local/bin/git",
	"git_command":
	[
		"/usr/local/bin/git"
	],

	// soda theme
	"soda_folder_icons": true,

	// sublimelinter
	"sublimelinter_executable_map":
	{
		"ruby": "rvm-auto-ruby"
	},
}
[
  { "keys": ["super+ctrl+left"], "command": "next_view_in_stack" },
  { "keys": ["super+ctrl+right"], "command": "prev_view_in_stack" }
]