Skip to content

Instantly share code, notes, and snippets.

@VGonPa
Last active August 29, 2015 14:07
Show Gist options
  • Save VGonPa/4b1903c3f626a5d7695c to your computer and use it in GitHub Desktop.
Save VGonPa/4b1903c3f626a5d7695c to your computer and use it in GitHub Desktop.
My Sublime Text 3 Config (User settings)
[
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } }
]
{
// 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
}
{
"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
}
{
"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