Skip to content

Instantly share code, notes, and snippets.

@andytill
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andytill/85cf0684ab010ebe8d37 to your computer and use it in GitHub Desktop.
Save andytill/85cf0684ab010ebe8d37 to your computer and use it in GitHub Desktop.
Sublime Text Settings (OSX)
[
{ "keys": ["ctrl+forward_slash"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+alt+forward_slash"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["f3"], "command": "goto_definition" },
{ "keys": ["super+alt+r"], "command": "reveal_in_side_bar" }
]
{
"color_scheme": "Packages/Color Scheme - Default/Solarized (Light).tmTheme",
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
".DS_Store",
"*.class",
"*.psd",
"*.db",
"*.sublime-workspace",
"*.beam"
],
"fold_buttons": false,
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS",
"ebin",
".gitignore",
"dev"
],
"highlight_line": true,
"ignored_packages":
[
"Erlang",
"Vintage"
],
"rulers":
[
80
],
"show_line_endings": true
}
@andytill
Copy link
Author

Make sure to map Caps Lock to super and make function keys actually map to their function (not volume up/down etc.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment