hack: stuffing python lsp config into editor

will circle back and convert to a template
This commit is contained in:
Matthew Ryan Dillon 2024-10-18 07:19:15 -04:00
parent 802098e257
commit 8174b07865

View file

@ -8,7 +8,6 @@ command = "clippy"
command = "zk" command = "zk"
args = ["lsp"] args = ["lsp"]
[[language]] [[language]]
name = "markdown" name = "markdown"
scope = "source.md" scope = "source.md"
@ -16,3 +15,13 @@ injection-regex = "md|markdown"
file-types = ["md", "markdown"] file-types = ["md", "markdown"]
roots = [".zk"] roots = [".zk"]
language-servers = ["zk"] language-servers = ["zk"]
[language-server.pyright]
command = "pyright-langserver"
args = ["--stdio"]
config = {}
environment = { "PYENV_VERSION" = "pyright" }
[[language]]
name = "python"
language-servers = ["pyright"]