Last active
August 29, 2015 14:07
-
-
Save VGonPa/4b1903c3f626a5d7695c to your computer and use it in GitHub Desktop.
My Sublime Text 3 Config (User settings)
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
Show hidden characters
[ | |
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } }, | |
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } } | |
] |
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
{ | |
// autoformat code on save ? | |
"autoformat_on_save": true, | |
// enable possibly unsafe changes (E226, E24, W6) | |
// aggressive level, 0 to disable: | |
"aggressive": 0, | |
// list codes for fixes; used by --ignore and --select | |
"list-fixes": false, | |
// do not fix these errors / warnings (e.g. [ "E501" , "E4" , "W"]) | |
"ignore": [], | |
// select errors / warnings (e.g. ["E4", "W"]) | |
"select": [], | |
// Maximum line length | |
"max-line-length": 79 | |
} |
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
{ | |
"color_scheme": "Packages/User/Monokai (SL).tmTheme", | |
"font_face": "Source Code Pro", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"rulers": | |
[ | |
80 | |
], | |
"tab_size": 4, | |
"translate_tabs_to_spaces": true | |
} |
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
{ | |
"enable_hdevtools": false, | |
"add_to_PATH": ["~Library/Haskell/bin/"], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment