You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

272 lines
5.7 KiB
TOML

[language-server.biome]
command = "biome"
args = ["lsp-proxy"]
7 months ago
[language-server.efm]
command = "efm-langserver"
[language-server.roc_lang_server]
command = "roc_lang_server"
args = []
7 months ago
[language-server.graphql-language-service]
command = "graphql-lsp"
args = ["server", "-m", "stream"]
[language-server.typescript-language-server.config.preferences]
disableSuggestions = true
7 months ago
[language-server.nu-lsp]
command = "nu"
args = ["-I", "~/.config/nushell/scripts", "--lsp"]
4 months ago
[language-server.pug-lsp]
command = "pug-lsp"
args = []
[language-server.astro-ls]
command = "astro-ls"
args = ["--stdio"]
[language-server.astro-ls.config]
typescript = {}
[language-server.vls]
command = "vls"
args = []
2 months ago
[language-server.pest-lsp]
command = "pest-language-server"
args = []
[language-server.svelteserver]
command = "svelteserver"
args = ["--stdio"]
[language-server.svelteserver.config.configuration.typescript]
inlayHints.parameterTypes.enabled = true
inlayHints.variableTypes.enabled = true
inlayHints.propertyDeclarationTypes.enabled = true
inlayHints.functionLikeReturnTypes.enabled = true
inlayHints.enumMemberValues.enabled = true
inlayHints.parameterNames.enabled = "all"
[language-server.svelteserver.config.configuration.javascript]
inlayHints.parameterTypes.enabled = true
inlayHints.variableTypes.enabled = true
inlayHints.propertyDeclarationTypes.enabled = true
inlayHints.functionLikeReturnTypes.enabled = true
inlayHints.enumMemberValues.enabled = true
inlayHints.parameterNames.enabled = "all"
[language-server.hx-lsp]
command = "hx-lsp"
args = []
7 months ago
# languages
[[language]]
name = "typescript"
2 months ago
language-servers = [
"typescript-language-server",
"biome",
"graphql-language-service",
{ name = "efm", only-features = [
"diagnostics",
"format",
] },
"hx-lsp"
2 months ago
]
auto-format = true
2 months ago
formatter = { command = "biome", args = [
"format",
"--stdin-file-path=file.ts",
] }
indent = { tab-width = 4, unit = " " }
7 months ago
[[language]]
name = "javascript"
language-servers = ["typescript-language-server", "biome", { name = "efm", only-features = ["diagnostics", "format"]}, "hx-lsp"]
auto-format = true
2 months ago
formatter = { command = "biome", args = [
"format",
"--stdin-file-path=file.js",
] }
indent = { tab-width = 4, unit = " " }
7 months ago
[[language]]
name = "json"
formatter = { command = "biome" , args = ["format", "--stdin-file-path=file.json"] }
7 months ago
10 months ago
[[language]]
name = "handlebars"
injection-regex = "hbs"
roots = ["package.json", "repo.toml", "dir.toml"]
2 months ago
file-types = ["hbs", "tmpl"]
10 months ago
grammar = "glimmer"
language-servers = ["ember"]
formatter = { command = "prettier", args = ['--parser', 'glimmer'] }
scope = "source.glimmer"
[[grammar]]
name = "glimmer"
source = { git = "https://github.com/alexlafroscia/tree-sitter-glimmer", rev = "f9746dc1d0707717fbba84cb5c22a71586af23e1" }
[[language]]
name = "roc"
language-servers = ["roc_lang_server"]
auto-format = true
indent = { tab-width = 4, unit = " " }
2 months ago
file-types = ["roc"]
shebangs = ["roc"]
scope = "source.roc"
2 months ago
comment-tokens = ["#"]
roots = []
formatter = { command = "roc", args = ['format', '--stdin', '--stdout'] }
grammar = "roc"
7 months ago
[[language]]
name = "bash"
auto-format = true
2 months ago
formatter = { command = "shfmt", args = ["-s", "-sr", "-"] }
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
[[grammar]]
name = "roc"
source = { git = "https://github.com/faldor20/tree-sitter-roc", rev = "381743cd40ee19a9508c6445aacb9085d4bc0cf8" }
[[language]]
name = "nu"
scope = "source.nu"
injection-regex = "nu"
file-types = ["nu", "nuon"]
shebangs = ["nu"]
indent = { tab-width = 2, unit = " " }
2 months ago
language-servers = ["nu-lsp"]
[[grammar]]
name = "nu"
source = { git = "https://github.com/nushell/tree-sitter-nu", rev = "358c4f509eb97f0148bbd25ad36acc729819b9c1" }
[[language]]
name = "markdown"
# formatter = { command = "comrak", args = ["-t", "commonmark", "--gfm", "--unsafe", "-e", "table"] }
formatter = { command = "prettier", args = ["--stdin-filepath=source.md"] }
4 months ago
[[language]]
name = "kdl"
auto-format = true
formatter = { command = "kdlfmt" }
[[language]]
name = "pug"
language-servers = ["pug-lsp"]
auto-format = true
indent = { tab-width = 4, unit = " " }
2 months ago
file-types = ["pug"]
4 months ago
scope = "source.pug"
2 months ago
comment-tokens = ["//"]
4 months ago
roots = []
grammar = "pug"
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
[[grammar]]
name = "pug"
source = { git = "https://github.com/zealot128/tree-sitter-pug", rev = "a7ff31a38908df9b9f34828d21d6ca5e12413e18" }
2 months ago
[[language]]
name = "svelte"
auto-format = true
language-servers = [ "svelteserver", "biome" ]
[[language]]
name = "astro"
language-servers = [ "astro-ls", "hx-lsp" ]
[[language]]
name = "jora"
injection-regex = "(jr|jora)"
auto-format = true
indent = { tab-width = 4, unit = " " }
2 months ago
file-types = ["jora"]
scope = "source.jora"
2 months ago
comment-tokens = ["//"]
roots = []
language-servers = [ "hx-lsp" ]
grammar = "jora"
# [[grammar]]
# name = "jora"
# source = { git = "git@gitlab.unitb.com:jri/tree-sitter-jora.git", rev = "3c65fd8a368818a2300ac4dee8f4801db9dd28e1" }
[[language]]
name = "vue"
auto-format = true
2 months ago
formatter = { command = "biome", args = [
"format",
"--stdin-file-path=file.vue",
] }
language-servers = ["vls"]
[[language]]
name = "env"
2 months ago
file-types = [
{ glob = ".env" },
{ glob = ".env.*" },
{ glob = ".envrc" },
{ glob = ".envrc.*" },
{ glob = "*.env" },
]
[[language]]
name = "pest"
language-servers = ["pest-lsp"]
auto-format = true
indent = { tab-width = 2, unit = " " }
file-types = ["pest"]
shebangs = ["pest"]
scope = "source.pest"
comment-tokens = ["//"]
grammar = "pest"
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
[[grammar]]
name = "pest"
source = { git = "https://github.com/pest-parser/tree-sitter-pest", rev = "a8a98a824452b1ec4da7f508386a187a2f234b85" }