Skip to content

Instantly share code, notes, and snippets.

@lambro
Last active September 22, 2016 14:10
Show Gist options
  • Save lambro/0aabe659e66ad32f767cb301d94f00dc to your computer and use it in GitHub Desktop.
Save lambro/0aabe659e66ad32f767cb301d94f00dc to your computer and use it in GitHub Desktop.
Preferences for sublime text 3 20/09/16

Sublime text tips for myself

Settings for home

{
	"always_show_minimap_viewport": true,
	"bold_folder_labels": true,
	"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
	"detect_indentation": false,
	"draw_minimap_border": true,
	"draw_white_space": "all",
	"ensure_newline_at_eof_on_save": true,
	"fade_fold_buttons": false,
	"find_selected_text": true,
	"font_face": "Monaco",
	"font_options":
	[
		"gray_antialias"
	],
	"font_size": 13.0,
	"highlight_line": true,
	"highlight_modified_tabs": true,
	"ignored_packages":
	[
		"Vintage"
	],
	"indent_guide_options":
	[
		"draw_normal",
		"draw_active"
	],
	"line_padding_bottom": 3,
	"line_padding_top": 3,
	"open_files_in_new_window": false,
	"overlay_scroll_bars": "enabled",
	"shift_tab_unindent": true,
	"tab_size": 2,
	"theme": "Material-Theme-Darker.sublime-theme",
	"translate_tabs_to_spaces": true,
	"trim_trailing_white_space_on_save": true,
	"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?_",
	"word_wrap": true
}

Settings for Work

{
	"always_show_minimap_viewport": false,
	"auto_save": true,
	"bold_folder_labels": true,
	"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
	"command": "auto_save",
	"detect_indentation": false,
	"fade_fold_buttons": false,
	"find_selected_text": true,
  "open_files_in_new_window": false,
  "overlay_scroll_bars": "enabled",
	"font_options":
	[
		"gray_antialias"
	],
	"font_size": 14,
	"ignored_packages":
	[
		"Capybara Snippets",
		"Cucumber Step Finder",
		"Emmet",
		"Vintage"
	],
	"indent_guide_options":
	[
		"draw_normal",
		"draw_active"
	],
	"keys":
	[
		"ctrl+shift+s"
	],
	"line_padding_bottom": 5,
	"line_padding_top": 5,
	"material_theme_panel_separator": true,
	"overlay_scroll_bars": "enabled",
	"remember_open_files": true,
	"scroll_past_end": true,
	"tab_size": 2,
	"theme": "Material-Theme.sublime-theme",
	"translate_tabs_to_spaces": true,
  "word_wrap": true
}

Notes on Set Up

For sideBarEnhancements go to Package Control: Add Repository and add the link

https://github.com/titoBouzout/SideBarEnhancements/tree/st3

Then you can find it within package control again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment