dotconfig/dot_config/helix/languages.toml
Hendrik Boll 8e65da17c7
helix: new language xbps-template
inherit from bash
set indent-style to \t
2025-07-03 21:01:12 +02:00

16 lines
350 B
TOML

[[language]]
name = "yaml"
auto-format = true
formatter = { command = "yamlfmt", args = ["-"] }
[[language]]
name = "xbps-template"
scope = "source.xbps"
roots = ["xbps-src"]
file-types = [
{ glob = "srcpkgs/*/template" }
]
comment-token = "#"
language-servers = [ "bash-language-server" ]
indent = { tab-width = 4, unit = "\t" }
grammar = "bash"