Skip to content

Instantly share code, notes, and snippets.

@mesuutt
Last active December 15, 2015 10:38
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 mesuutt/5246630 to your computer and use it in GitHub Desktop.
Save mesuutt/5246630 to your computer and use it in GitHub Desktop.
Sublime text 2 Settings
{
"pep8_max_line_length": 120,
"ignore": ["E128"]
}
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Color Scheme - Default/Solarized (Dark).tmTheme",
"ensure_newline_at_eof_on_save": true,
"fade_fold_buttons": false,
"fallback_encoding": "UTF-8",
"font_face": "Ubuntu Mono",
"font_size": 9.5,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
[
"Vintage"
],
"line_padding_bottom": 1,
"line_padding_top": 1,
"rulers":
[
120
],
"shift_tab_unindent": true,
"soda_classic_tabs": true,
"soda_folder_icons": true,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": true,
"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS", ".vagrant"]
}
[
{ "keys": ["ctrl+enter"], "command": "ipython_exec" },
{ "keys": ["f5"], "command": "ipython_exec_file" },
{ "keys": ["ctrl+k","ctrl+m"], "command": "toggle_minimap" },
{ "keys": ["ctrl+3"], "command": "show_overlay", "args": {"overlay": "goto", "text": "#"} }, // Default ";" but not working on linux
//S*** SidebarEnhancement shortcuts
{ "keys": ["ctrl+t"], "command": "side_bar_new_file2" },
{ "keys": ["f3"], "command": "side_bar_rename" },
{ "keys": ["ctrl+alt+f"], "command": "side_bar_find_files_path_containing" },
//F*** SidebarEnhancement shortcuts
{"keys": ["ctrl+shift+r"], "command": "reindent" , "args": {"single_line": false}},
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } },
// On My samsung laptop pressing to home and end button hard.
{ "keys": ["alt+b"], "command": "move_to", "args": {"to": "bof", "extend": false} },
{ "keys": ["alt+e"], "command": "move_to", "args": {"to": "eof", "extend": false} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment