Last active
January 25, 2016 07:47
-
-
Save katsumata-ryo/33bdfa3a97c977e6b137 to your computer and use it in GitHub Desktop.
Sublime Text 3 - Settings User
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// encoding & line ending | |
"default_encoding": "UTF-8", | |
"fallback_encoding": "UTF-8", | |
"default_line_ending": "unix", | |
"show_encoding": true, | |
"show_line_endings": true, | |
// UI | |
"caret_style": "smooth", | |
"highlight_line": true, | |
"draw_white_space": "selection", | |
"show_full_path": true, | |
"preview_on_click": false, | |
// line paddings | |
"line_padding_top": 0, | |
"line_padding_bottom": 0, | |
// font | |
"font_face": "Ricty Diminished Discord", | |
"font_size": 16, | |
// wordwrep | |
"word_wrap": true, | |
"wrap_width": 120, | |
"indent_subsequent_lines": true, | |
// tab & space | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"use_tab_stops": false, | |
// indent | |
"detect_indentation": true, | |
"auto_indent": true, | |
"smart_indent": true, | |
"indent_to_bracket": false, | |
"trim_automatic_white_space": true, | |
"draw_indent_guides": true, | |
// theme | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"theme": "Minimal Dark.sublime-theme", | |
// ignore package | |
"ignored_packages": | |
[ | |
"Vintage" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment