-
-
Save insoul/2090367 to your computer and use it in GitHub Desktop.
sublime text 2 설정
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
// file settings | |
{ | |
"gutter": false, | |
"line_numbers": false, | |
"color_scheme": "Packages/Color Scheme - Default/LAZY.tmTheme", | |
"line_padding_bottom": 0, | |
"line_padding_top": 2, | |
"font_face": "Andale Mono", | |
"font_size": 16.0, | |
"auto_indent": true, | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"use_tab_stops": true, | |
"draw_indent_guides": false, | |
"word_wrap": false, | |
"auto_complete": false, | |
"auto_match_enabled": false, | |
"tree_animation_enabled": true | |
} | |
// key bindings | |
[ | |
{ "keys": ["super+ctrl+left"], "command": "next_view_in_stack" }, | |
{ "keys": ["super+ctrl+right"], "command": "prev_view_in_stack" } | |
] | |
// global settings | |
{ | |
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", "doc", "tmp"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment