Last active
May 20, 2025 01:12
-
-
Save neogeographica/88179fbc5fb7cb469bd38eebef8e2709 to your computer and use it in GitHub Desktop.
Sublime Text settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
// Settings in here override those in "LSP-pylsp/LSP-pylsp.sublime-settings" | |
{ | |
"disabled_capabilities": { | |
"completionProvider": true, | |
"definitionProvider": true, | |
"documentHighlightProvider": true, | |
"documentSymbolProvider": true, | |
"hoverProvider": true, | |
"referencesProvider": true, | |
"renameProvider": true, | |
"signatureHelpProvider": true, | |
}, | |
"settings": { | |
"pylsp.plugins.jedi_completion.enabled": false, | |
"pylsp.plugins.jedi_definition.enabled": false, | |
"pylsp.plugins.jedi_hover.enabled": false, | |
"pylsp.plugins.jedi_references.enabled": false, | |
"pylsp.plugins.jedi_signature_help.enabled": false, | |
"pylsp.plugins.jedi_symbols.enabled": false, | |
"pylsp.plugins.flake8.enabled": false, | |
"pylsp.plugins.pycodestyle.enabled": true, | |
"pylsp.plugins.pydocstyle.enabled": false, | |
"pylsp.plugins.pyflakes.enabled": false, | |
"pylsp.plugins.pylint.enabled": false, | |
"pylsp.plugins.pylsp_mypy.enabled": false, | |
"pylsp.plugins.ruff.enabled": false, | |
"pylsp.plugins.pycodestyle.aggressive": 3, | |
"pylsp.plugins.pycodestyle.maxLineLength": 88, | |
"pylsp.plugins.autopep8.enabled": false, | |
"pylsp.plugins.ruff.formatEnabled": false, | |
"pylsp.plugins.yapf.enabled": false, | |
"pylsp.plugins.pyls_isort.enabled": false, | |
"pylsp.plugins.black.enabled": true, | |
"pylsp.plugins.black.line_length": 88, | |
}, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Settings in here override those in "LSP/LSP.sublime-settings" | |
{ | |
"lsp_format_on_save": true, | |
"show_diagnostics_count_in_view_status": true, | |
"show_references_in_quick_panel": true, | |
"inhibit_snippet_completions": true, | |
"inhibit_word_completions": true, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bootstrapped": true, | |
"in_process_packages": | |
[ | |
], | |
"installed_packages": | |
[ | |
"Dracula Color Scheme", | |
"Gomod", | |
"LSP", | |
"LSP-file-watcher-chokidar", | |
"LSP-gopls", | |
"LSP-json", | |
"LSP-pylsp", | |
"LSP-pyright", | |
"LSP-yaml", | |
"Package Control", | |
"SideBarEnhancements", | |
"Snazzy Color Scheme", | |
"Theme - Spacegray", | |
"TOML", | |
"WordingStatus", | |
], | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"file_exclude_patterns": [ | |
"*.beam", | |
"*.pyc", | |
"*.pyo", | |
"*.exe", | |
"*.dll", | |
"*.obj", | |
"*.o", | |
"*.a", | |
"*.lib", | |
"*.so", | |
"*.dylib", | |
"*.ncb", | |
"*.sdf", | |
"*.suo", | |
"*.pdb", | |
"*.idb", | |
".DS_Store", | |
"*.class", | |
"*.psd", | |
"*.db" | |
], | |
"rulers": [ | |
78 | |
], | |
"ignored_packages": [ | |
"Vintage", | |
], | |
"translate_tabs_to_spaces": true, | |
"theme": "Spacegray.sublime-theme", | |
"color_scheme": "Base16 Eighties Dark.sublime-color-scheme", | |
"font_face": "MonaspiceAr NFM", | |
"index_files": true, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"thousands_separator": ",", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment