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"
// }
// ],
}

View File

@@ -16,14 +16,33 @@
],
"settings":
{
"SublimeLinter.linters.pycodestyle.disable": false,
"SublimeLinter.linters.pyflakes.disable": false,
"LSP":
{
"pyls":
{
"enabled": true,
"env":
{
"PYTHONPATH": "$VIRTUAL_ENV/bin/python"
}
}
},
"SublimeLinter.linters.pycodestyle.disable": true,
"SublimeLinter.linters.pyflakes.disable": true,
"anaconda_linting": false,
"convert_tabspaces_on_save": false,
"debug.configurations":
[
{
"name": "Python Debug",
"program": "${file}",
"request": "launch",
"type": "python"
}
],
"enable_signatures_tooltip": true,
"merge_signatures_and_doc": true,
"python_interpreter": "$VIRTUAL_ENV/bin/python3",
"merge_signatures_and_doc": false,
"python_interpreter": "$VIRTUAL_ENV/bin/python"
},
"virtualenv": "/home/dtomlinson/.virtualenvs/bayes-learning"
}

View File

@@ -1,48 +1,92 @@
# Notes
## Anaconda
This is only used for it's build system. The rest of the addon isn't.
## Sublack
Can be deprecated in favour of LSP (with black installed into the venv)
## SublimeLinter
Deprecated in favour of LSP
## Python Breakpoints
Deprecated in favour of pudb
# Packages
## General
- a file icon
- base encoder
- brackethighlighter
- expand tabs on save
- sidebarenhancements
- A File Icon
- BracketHighlighter
- Expand Tabs on Save
- SideBarEnhancements
## Debugging
- sublimelog
- terminus
- SublimeLog
- Terminus
## Markdown
- markdown extended
- markdown live preview
- markdown preview
- markdown toc
- markdown table formatter
- github markdown snippets
- Markdown Extended
- Markdown Table Formatter
- MarkdownLivePreview
- MarkdownPreview
- MarkdownTOC
- GitHub Markdown Snippets
## Python-development
- anaconda
- buildview
## RST
- Restructured Text (RST) Snippets
## Development
- LSP
### Python-development
- Anaconda
- sublime-text-2-buildview
- requirementstxt
- sublack
- sublime text - virtualenv
- sublimelinter
- sublimelinter-pycodestyle
<!-- - sublimelinter-pyflakes -->
- sublimelinter - flake8
- sublimerepel
- virtualenv
- autodocstring
- magicpython (disable python package)
- pythonbreakpoints
- Virtualenv
<!-- - SublimeLinter
- SublimeLinter-flake8
- SublimeLinter-pycodestyle
- SublimeLinter-pyflakes -->
- SublimeREPL
- AutoDocstring
- Python Improved
- MagicPython
<!-- - Python Breakpoints -->
## Rust development
- rust-extended
- toml
- lsp
### Rust development
- Rust Enhanced
- TOML
## Productivity
- plain tasks
- PlainTasks
## Functionality
- text pastry
- base encoder
- Text Pastry
- Base Encoder
- InsertDate
- AutoFileName
- ChangeQuotes
## Misc
- RPM Spec Syntax
## Themeing
- ColorSchemeEditor
- Themr

View File

@@ -1,9 +1,19 @@
# Themes
## Sublime themes
- Agila Theme
- ayu
- edge night sky
- halcyon
- Enki Theme
- Halcyon Theme
- Spaceblack
## Colour Schemes
- 10% Too Dull for My Tastes Color Scheme
- ayu
- night Owl
- Night Owl
- Neon Color Scheme
- Predawn
- Predawn Monokai