Last active
December 16, 2015 13:19
-
-
Save corysimmons/5440589 to your computer and use it in GitHub Desktop.
My user settings for Sublime Text. Updated semi-frequently.
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
[ | |
{ "keys": ["super+shift+d"], "command": "duplicate_lines" }, | |
{ "keys": ["ctrl+d"], "command": "dash_doc"}, | |
{ "keys": ["ctrl+shift+d"], "command": "dash_doc", | |
"args": { "syntax_sensitive": false } }, | |
{ "keys": ["super+shift+r"], "command": "reindent" } | |
] |
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
{ | |
"auto_complete": false, | |
"autocomplete_commit_on_tab": false, | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/Themes/dark-pastel.tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"fade_fold_buttons": false, | |
"font_size": 12, | |
"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, | |
"remember_open_files": false, | |
"show_panel_on_build": false, | |
"theme": "Soda Dark.sublime-theme", | |
"trailing_spaces_highlight_color": "keyword", | |
"translate_tabs_to_spaces": true, | |
"trim_automatic_white_space": false, | |
"trim_trailing_white_space_on_save": true, | |
"use_tab_stops": true, | |
"word_wrap": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment