27 lines
442 B
TOML
27 lines
442 B
TOML
[python]
|
|
name = "python"
|
|
file-types = ["py"]
|
|
comment-tokens = "#"
|
|
indent = { tab-width = 4, unit = " "}
|
|
language-servers = ["pylsp", "python-ruff"]
|
|
roots = ["setup.py", "pyproject.toml"]
|
|
|
|
[pylsp]
|
|
command = "pylsp"
|
|
|
|
[python-ruff]
|
|
command = "ruff"
|
|
args = ["server"]
|
|
|
|
|
|
[go]
|
|
name = "go"
|
|
file-types = ["go"]
|
|
comment-tokens = "//"
|
|
indent = { tab-width = 4, unit = "\t"}
|
|
language-servers = ["gopls"]
|
|
roots = ["go.mod"]
|
|
|
|
[gopls]
|
|
command = "gopls"
|