Skip to content

Instantly share code, notes, and snippets.

@danielronnkvist
Last active August 29, 2015 14:15
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 danielronnkvist/140267fbf005c7dcb8d1 to your computer and use it in GitHub Desktop.
Save danielronnkvist/140267fbf005c7dcb8d1 to your computer and use it in GitHub Desktop.
Sublime text settings
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+alt+o"], "command": "prompt_open_folder" },
{ "keys": ["ctrl+'"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+'"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["super+r"], "command": "build", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.pde" }
]
},
{ "keys": ["super+shift+r"], "command": "build", "args": {"variant": "Run sketch fullscreen"}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.pde" }
]
},
{ "keys": ["alt+left"], "command": "move", "args": {"by": "subwords", "forward": false} },
{ "keys": ["alt+right"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
{ "keys": ["alt+shift+left"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["alt+shift+right"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} }
]
"installed_packages":
[
"AdvancedNewFile",
"All Autocomplete",
"Better CoffeeScript",
"Clipboard Manager",
"CoffeeAngular Syntax",
"ColorPicker",
"Dictionaries",
"Emmet",
"GitGutter",
"HTML Boilerplate",
"HTML-CSS-JS Prettify",
"LaTeXTools",
"Markdown Preview",
"MDN Search Doc",
"Oceanic Next Color Scheme",
"Package Control",
"Processing",
"Rails Developer Snippets",
"Sass",
"SCSS",
"SCSS Snippets",
"SideBarEnhancements",
"SublimeLinter",
"SublimeLinter-rubocop",
"SublimeLinter-ruby",
"Theme - Spacegray",
"WordCount"
]
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Oceanic Next (SL).tmTheme",
"dictionary": "Packages/Language - English/en_US.dic",
"ensure_newline_at_eof_on_save": true,
"font_size": 15,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"index_files": true,
"rulers":
[
80
],
"save_on_focus_lost": true,
"scroll_past_end": true,
"spacegray_tabs_large": true,
"tab_size": 2,
"theme": "Spacegray Eighties.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment