Last active
July 7, 2016 19:13
-
-
Save yovasx2/690b9e5d866d88b8f212 to your computer and use it in GitHub Desktop.
A brief config for sublime, xampp preferences
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
// Preferences key bindings user | |
[ | |
{ "keys": ["ctrl+1"], "command": "reindent", "args": {"single_line": false}}, | |
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } } | |
] | |
// Preferences settings user | |
{ | |
"font_size": 16, | |
"rulers": [80], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true, | |
"detect_indentation": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment