Skip to content

Instantly share code, notes, and snippets.

@pateketrueke
Created June 18, 2013 19:23
Show Gist options
  • Save pateketrueke/5808414 to your computer and use it in GitHub Desktop.
Save pateketrueke/5808414 to your computer and use it in GitHub Desktop.
My SublimeText2 setup
/* Preferences */
{
"auto_complete": false,
"bold_folder_labels": true,
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"detect_indentation": false,
"drag_text": false,
"ensure_newline_at_eof_on_save": true,
"font_face": "Andale Mono",
"font_size": 14.0,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage",
"SFTP"
],
"open_files_in_new_window": false,
"shift_tab_unindent": true,
"show_tab_close_buttons": false,
"tab_completion": false,
"tab_size": 2,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": false
}
/* Keyboard */
[
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["ctrl+pageup"], "command": "next_view" },
{ "keys": ["ctrl+pagedown"], "command": "prev_view" },
{ "keys": ["ctrl+t"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["ctrl+<"], "command": "toggle_side_bar" },
{ "keys": ["ctrl+alt+m"], "command": "markdown_preview" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment