Skip to content

Instantly share code, notes, and snippets.

@Andrew-liu
Last active December 3, 2017 15:06
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 Andrew-liu/86223a7f34a17080b0c33e36a09e5da3 to your computer and use it in GitHub Desktop.
Save Andrew-liu/86223a7f34a17080b0c33e36a09e5da3 to your computer and use it in GitHub Desktop.
Sublime config
// sublime for mac settings
{
"always_show_minimap_viewport": true,
"bold_folder_labels": true,
"color_scheme": "Packages/Colorsublime - Themes/Cozy.tmTheme",
"create_window_at_startup": false,
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"font_face": "monaco",
"font_size": 16,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"overlay_scroll_bars": "enabled",
"remember_full_screen": true,
"save_on_focus_lost": true,
"show_encoding": true,
"show_line_endings": true,
"tab_size": 4,
"theme": "Material-Theme.sublime-theme",
"translate_tabs_to_spaces": true,
// 文本自动换行
"word_wrap": true,
"default_line_ending": "unix",
}
//sublime for windos settings
{
"color_scheme": "Packages/Colorsublime - Themes/Hammer.tmTheme",
"create_window_at_startup": false,
"draw_white_space": "all",
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.pyc",
"*~",
".ps.*",
".comake2.*",
"*.o"
],
"font_size": 14,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"open_files_in_new_window": false,
"rulers":
[
80,
100
],
"show_encoding": true,
"theme": "Material-Theme-Darker.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
// 文本自动换行
"word_wrap": true
}
/*
* Windows All package list:
*
* All autocomplete
* AutoFileName
* BracketHighlighter
* Colorsublime
* ConvertToUTF
* CTags
* DocBlockr
* FileHeader
* MarkdownEditing
* Material Theme
* Package Control
* Pretty JSON
* SideBarEnhancements
*
* Mac All package list:
* Alignment
* All autocomplete
* BracketHighlighter
* ColorSublime
* ConvertToUTF
* DocBlockr
* Emment
* Markdown preview
* Markdown Editing
* Material Theme
* Package Control
* SideBarEnhancements
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment