Created
October 20, 2014 21:01
-
-
Save patrickgrey/427194eb2a9e7a1c371e to your computer and use it in GitHub Desktop.
Sublime Text 3 user settings & keymap
This file contains hidden or 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
// user settings | |
{ | |
"auto_complete_commit_on_tab": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/User/Flatland Monokai (SL).tmTheme", | |
"draw_white_space": "all", | |
"font_options": "subpixel_antialias", | |
"font_size": 10, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 1, | |
"line_padding_top": 1, | |
"rulers": | |
[ | |
80, | |
120 | |
], | |
"save_on_focus_lost": true, | |
"scroll_past_end": true, | |
"shift_tab_unindent": true, | |
"tab_size": 4, | |
"theme": "Flatland Dark.sublime-theme", | |
"translate_tabs_to_spaces": true, | |
"trim_trailing_white_space_on_save": true, | |
"word_wrap": true | |
} | |
// keymap | |
[ | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["ctrl+shift+o"], "command": "prompt_open_folder" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment