Skip to content

Instantly share code, notes, and snippets.

@monaboiste
Last active April 16, 2021 20:00
Show Gist options
  • Save monaboiste/a4ac59a5d2f20a4e6a50b5260e49a0f0 to your computer and use it in GitHub Desktop.
Save monaboiste/a4ac59a5d2f20a4e6a50b5260e49a0f0 to your computer and use it in GitHub Desktop.
Sublime Text Settings Backup
{
"enable_signatures_tooltip": true,
"display_signatures": true,
"enable_docstrings_tooltip": true,
"auto_formatting": true,
"python_interpreter": "S:\\Programs\\Scoop\\apps\\python\\current\\python.exe",
"anaconda_linter_delay": 1.0,
"anaconda_linter_mark_style": "none",
"anaconda_linter_underlines": false,
"pep8_ignore":
[
"E501",
"E309",
"E305",
"E303",
"E302",
"E203",
"E127",
"E128",
"E101",
"W503",
"W391",
"W291",
"W101",
"W191"
],
"autoformat_select":
[
"E302",
"E303",
"E101",
"W391",
"W305",
"W291",
"W191",
"W101"
],
}
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"1337 Color Scheme",
"A File Icon",
"Anaconda",
"CoolFormat",
"HexViewer",
"Material Theme",
"Package Control",
"PowerShell",
"SideBarEnhancements",
"Tabnine"
]
}
{
"always_show_minimap_viewport": true,
"auto_complete": false,
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"draw_white_space": "all",
"font_face": "Cascadia Code",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"font_size": 9,
"ignored_packages":
[
"Markdown",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"line_padding_bottom": 3,
"line_padding_top": 3,
"material_theme_accent_pink": true,
"material_theme_accent_scrollbars": true,
"material_theme_accent_titlebar": true,
"material_theme_bold_tab": true,
"material_theme_compact_sidebar": true,
"material_theme_small_tab": true,
"material_theme_titlebar": true,
"overlay_scroll_bars": "enabled",
"swallow_startup_errors": true,
"theme": "Material-Theme.sublime-theme"
}
{
"autoformat_on_save": true,
"align-pointer": "type",
"align-reference": "type",
"remove-brackets": true,
"pad-paren": false,
"pad-paren-out": false,
"pad-first-paren-out": false,
"pad-paren-in": false,
"pad-header": false,
"unpad-paren": true
}
[
{ "keys": ["ctrl+d"], "command": "duplicate_line" },
{ "keys": ["alt+up"], "command": "swap_line_up" },
{ "keys": ["alt+down"], "command": "swap_line_down" },
{ "keys": ["ctrl++w"], "command": "close" },
{ "keys": ["ctrl+shift+w"], "command": "close_file" },
{ "keys": ["shift+alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["shift+alt+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+shift+\\"], "command": "new_pane", "args": {"move": false} },
{ "keys": ["alt+left"], "command": "focus_neighboring_group", "args": {"forward": false} },
{ "keys": ["alt+right"], "command": "focus_neighboring_group" },
{ "keys": ["ctrl+k", "ctrl+d"], "command": "reindent", "args": {"single_line": false}},
{ "keys": ["ctrl+k", "ctrl+c"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+k", "ctrl+c"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+g"], "command": "find_all_under" },
{
"keys": ["shift+alt+left"]
,"command": "set_layout"
,"args": {
"cols": [0.0, 0.75, 1.0]
,"rows": [0.0, 1.0]
,"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["shift+alt+right"]
,"command": "set_layout"
,"args": {
"cols": [0.0, 0.25, 1.0]
,"rows": [0.0, 1.0]
,"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["shift+alt+up"]
,"command": "set_layout"
,"args": {
"cols": [0.0, 0.5, 1.0]
,"rows": [0.0, 1.0]
,"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment