updating to latest config

This commit is contained in:
dtomlinson@panaetius.co.uk
2019-12-02 00:04:15 +00:00
parent 21c726f557
commit 27823104f3
9 changed files with 229 additions and 52 deletions

View File

@@ -6,5 +6,5 @@
// ! PLEASE RESTART SUBLIME TEXT FOR THESE CHANGES TO TAKE EFFECT !
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
"force_mode": true
"force_mode": false
}

View File

@@ -0,0 +1,4 @@
{
"disable_anaconda_completion": false,
"display_signatures": false
}

View File

@@ -1,3 +1,3 @@
{
"style": "numpy",
"style": "google",
}

View File

@@ -0,0 +1,32 @@
{
"clients":
{
"rls":
{
"enabled": true
}
},
"pyls":
{
"command": ["pyls"],
"scopes": ["source.python"],
"syntaxes": ["Packages/Python/Python.sublime-syntax", "Packages/MagicPython/grammars/MagicPython.tmLanguage", "Packages/Djaneiro/Syntaxes/Python Django.tmLanguage"],
"languageId": "python",
"settings": {
"pyls": {
"configurationSources": ["flake8"],
"plugins": {
"pyflakes": {
"enabled": false
}
}
}
}
},
"show_code_actions_bulb": true,
"highlight_active_signature_parameter": true,
"document_highlight_style": "underline",
"diagnostics_gutter_marker": "bookmark",
"show_symbol_action_links": true,
"auto_show_diagnostics_panel_level": 1,
}

View File

@@ -8,24 +8,42 @@
],
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/Night Owl/Night Owl.sublime-color-scheme",
"color_scheme": "Packages/10% Too Dull for My Tastes Color Scheme/scotchy.tmTheme",
"complete_all_paramters": true,
"display_signatures": true,
"draw_white_space": "all",
"enable_docstrings_tooltip": true,
"enable_signatures_tooltip": true,
"enki_theme_compact_panel": true,
"enki_theme_small_statusbar": true,
"enki_theme_small_tab": true,
"ensure_newline_at_eof_on_save": true,
"font_face": "Source Code Pro",
"font_size": 11,
"font_face": "Hack Regular",
"font_options":
[
"gray_antialias",
"subpixel_antialias"
],
"font_size": 12,
"highlight_line": true,
"ignored_packages":
[
"Python",
"Debugger",
"Rust",
"SublimeLinter-flake8",
"SublimeLinter-pyflakes",
"Vintage"
],
"indent_guide_options":
[
"draw_normal",
"draw_active"
],
"indent_to_bracket": false,
"merge_signatures_and_doc": true,
"overlay_scroll_bars": "enabled",
"remember_open_files": true,
"scroll_past_end": true,
"settings":
{
"extra_paths":
@@ -34,11 +52,19 @@
],
"python_interpreter": "$VIRTUAL_ENV/bin/python"
},
"theme": "halcyon.sublime-theme",
"sidebar_font_small": true,
"spaceblack_color_expanded_folder": true,
"spaceblack_sidebar_font_normal": false,
"spaceblack_sidebar_font_small": false,
"spaceblack_sidebar_tree_normal": false,
"spaceblack_sidebar_tree_small": false,
"spaceblack_sidebar_tree_xxlarge": false,
"spaceblack_tabs_small": true,
"tabs_small": true,
"theme": "Spaceblack.sublime-theme",
"trailing_spaces_modified_lines_only": true,
"trailing_spaces_trim_on_save": true,
"translate_tabs_to_spaces": true,
// "trim_trailing_white_space_on_save": true,
"trailing_spaces_modified_lines_only": true,
"trailing_spaces_trim_on_save": true,
"ui_separator": true,
"word_wrap": true,
"wrap_width": 80

View File

@@ -3,6 +3,48 @@
"pycodestyle": {
"ignore": ["E402", "W503"]
}
}
}
},
"gutter_theme": "Danish Royalty",
"highlights.time_to_idle": 60,
"lint_mode": "save",
"highlights.demote_while_editing": "warnings",
// "styles": [
// {
// // Used to determine the color. E.g. region.<colorish>, with one of
// // redish, orangish, yellowish, greenish, bluish, purplish, pinkish.
// "scope": "region.greenish markup.warning.sublime_linter",
// // The error type this style definition will match for.
// // An array which can contain "warning" and/or "error".
// // If omitted will match both.
// "types": ["warning"],
// "mark_style": "solid_underline",
// },
// {
// // Determines, for overlapping errors, which one is visualised.
// "priority": 1,
// // The icon displayed in the gutter area
// // - "circle", "dot" or "bookmark"
// // - "none" to remove the icon
// // - A path to an icon file like
// // "Packages/SublimeLinter/gutter-themes/Blueberry Cross/error.png"
// // - One provided by a gutter theme (e.g. "warning" or "error").
// // In theme Default: warning, error, cog, x,
// // and diamond, heart, pointer, square, star, triangle, which all
// // also have an -outline variant.
// "icon": "dot",
// // The highlight style:
// // - "none"
// // - "fill", "outline",
// // - "solid_underline", "squiggly_underline", "stippled_underline"
// // The underline styles are replaced with outlines when there is
// // whitespace in the problem region, because underlines aren't drawn
// // on whitespace (ST issue #137).
// "mark_style": "outline",
// "scope": "region.redish markup.error.sublime_linter"
// }
// ],
}