Skip to content

Instantly share code, notes, and snippets.

@gjbagrowski
Last active December 20, 2015 12:29
Show Gist options
  • Save gjbagrowski/6131589 to your computer and use it in GitHub Desktop.
Save gjbagrowski/6131589 to your computer and use it in GitHub Desktop.
Preferences.sublime-settings:
{
// colors
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
"theme": "Soda Dark.sublime-theme",
"caret_style": "wide",
"font_size": 9,
"highlight_line": true,
"highlight_modified_tabs": true,
"margin": 0,
"gutter": false,
"fold_buttons": false,
"sublimelinter_gutter_marks": false,
"overlay_scroll_bars": "enabled",
// editor
"line_wrap": false,
"drag_text": false,
// output
"tab_size": 4,
"rulers":
[
80
],
"detect_indentation": false,
"ensure_newline_at_eof_on_save": true,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
// packages
"ignored_packages":
[
"Vintage"
],
"sublimelinter_mark_style": "outline",
"pep8": true,
"pep8_ignore":
[ // counterproductive lints
"E501",
],
"sublimelinter_notes": true,
"pyflakes_ignore_import_*": false
}
Default (Linux).sublime-keymap:
[
{ "keys": ["alt+up"], "command": "jump_back" },
{ "keys": ["alt+down"], "command": "jump_forward" },
{ "keys": ["ctrl+c"], "command": "clipboard_manager_copy",},
{ "keys": ["ctrl+x"], "command": "clipboard_manager_cut",},
{ "keys": ["ctrl+v"], "command": "clipboard_manager_paste"},
{ "keys": ["ctrl+q"], "command": "clipboard_manager_choose_and_paste" },
{ "keys": ["ctrl+t"], "command": "side_bar_new_file2" },
{ "keys": ["f2"], "command": "side_bar_rename" },
{ "keys": ["ctrl+alt+f"], "command": "side_bar_find_files_path_containing" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment