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.

302 lines
6.5 KiB
TOML

[language-server.biome]
command = "biome"
args = ["lsp-proxy"]
8 months ago
[language-server.efm]
command = "efm-langserver"
[language-server.roc_lang_server]
command = "roc_lang_server"
args = []
[language-server.graphql-language-service]
command = "graphql-lsp"
args = ["server", "-m", "stream"]
[language-server.typescript-language-server.config.preferences]
disableSuggestions = true
8 months ago
[language-server.nu-lsp]
command = "nu"
args = ["-I", "~/.config/nushell/scripts", "--lsp"]
5 months ago
[language-server.pug-lsp]
command = "pug-lsp"
args = []
5 months ago
[language-server.astro-ls]
command = "astro-ls"
args = ["--stdio"]
[language-server.astro-ls.config]
typescript = {}
[language-server.vls]
command = "vls"
args = ["--stdio"]
config = { typescript = { tsdk = "node_modules/typescript/lib/" } }
3 months ago
[language-server.pest-lsp]
command = "pest-language-server"
args = []
3 months ago
[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 = []
# languages
8 months ago
[[language]]
name = "typescript"
language-servers = [
"typescript-language-server",
"biome",
3 months ago
# "graphql-language-service",
# { name = "efm", only-features = ["diagnostics", "format"] },
# "hx-lsp",
]
auto-format = true
formatter = { command = "biome", args = [
3 months ago
"format",
"--stdin-file-path=file.ts",
] }
indent = { tab-width = 4, unit = " " }
8 months ago
[[language]]
name = "javascript"
language-servers = [
"typescript-language-server",
"biome",
{ name = "efm", only-features = [
"diagnostics",
"format",
] },
"hx-lsp",
]
auto-format = true
formatter = { command = "biome", args = [
"format",
"--stdin-file-path=file.js",
] }
indent = { tab-width = 4, unit = " " }
8 months ago
[[language]]
name = "json"
formatter = { command = "biome", args = [
"format",
"--stdin-file-path=file.json",
] }
8 months ago
10 months ago
[[language]]
name = "handlebars"
injection-regex = "hbs"
roots = ["package.json", "repo.toml", "dir.toml"]
file-types = ["hbs", "tmpl"]
grammar = "glimmer"
language-servers = ["ember"]
formatter = { command = "prettier", args = ['--parser', 'glimmer'] }
scope = "source.glimmer"
10 months ago
[[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 = " " }
file-types = ["roc"]
shebangs = ["roc"]
scope = "source.roc"
comment-tokens = ["#"]
roots = []
formatter = { command = "roc", args = ['format', '--stdin', '--stdout'] }
grammar = "roc"
8 months ago
[[language]]
name = "bash"
auto-format = true
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 = " " }
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"] }
5 months ago
[[language]]
name = "kdl"
auto-format = true
formatter = { command = "kdlfmt" }
5 months ago
3 months ago
[[language]]
name = "toml"
auto-format = true
formatter = { command = "taplo", args = [
"fmt",
"--option",
"indent_entries=true",
"--option",
"indent_tables=true",
"-",
] }
3 months ago
5 months ago
[[language]]
name = "pug"
language-servers = ["pug-lsp"]
auto-format = true
indent = { tab-width = 4, unit = " " }
file-types = ["pug"]
scope = "source.pug"
comment-tokens = ["//"]
roots = []
grammar = "pug"
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
5 months ago
[[grammar]]
name = "pug"
source = { git = "https://github.com/zealot128/tree-sitter-pug", rev = "a7ff31a38908df9b9f34828d21d6ca5e12413e18" }
[[language]]
name = "svelte"
auto-format = true
language-servers = ["svelteserver", "biome"]
3 months ago
[[language]]
name = "astro"
language-servers = ["astro-ls", "hx-lsp"]
[[language]]
name = "jora"
injection-regex = "(jr|jora)"
auto-format = true
indent = { tab-width = 4, unit = " " }
file-types = ["jora"]
scope = "source.jora"
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
language-servers = ["vls", "biome"]
formatter = { command = "biome", args = [
"format",
"--stdin-file-path=file.vue",
] }
[[language]]
name = "env"
file-types = [
{ glob = ".env" },
{ glob = ".env.*" },
{ glob = ".envrc" },
{ glob = ".envrc.*" },
{ glob = "*.env" },
]
[[language]]
name = "scheme"
formatter = { command = "schemat" }
3 months ago
[[language]]
name = "svelte"
auto-format = true
3 months ago
[[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"
3 months ago
[language.auto-pairs]
'(' = ')'
'{' = '}'
'[' = ']'
'"' = '"'
3 months ago
[[grammar]]
name = "pest"
source = { git = "https://github.com/pest-parser/tree-sitter-pest", rev = "a8a98a824452b1ec4da7f508386a187a2f234b85" }