forked from Mirrors/helix
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.
156 lines
3.0 KiB
TOML
156 lines
3.0 KiB
TOML
[[language]]
|
|
name = "rust"
|
|
scope = "source.rust"
|
|
injection-regex = "rust"
|
|
file-types = ["rs"]
|
|
roots = []
|
|
|
|
language-server = { command = "rust-analyzer" }
|
|
indent = { tab-width = 4, unit = " " }
|
|
|
|
[[language]]
|
|
name = "toml"
|
|
scope = "source.toml"
|
|
injection-regex = "toml"
|
|
file-types = ["toml"]
|
|
roots = []
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "elixir"
|
|
scope = "source.elixir"
|
|
injection-regex = "elixir"
|
|
file-types = ["ex", "exs"]
|
|
roots = []
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "json"
|
|
scope = "source.json"
|
|
injection-regex = "json"
|
|
file-types = ["json"]
|
|
roots = []
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "c"
|
|
scope = "source.c"
|
|
injection-regex = "c"
|
|
file-types = ["c"] # TODO: ["h"]
|
|
roots = []
|
|
|
|
language-server = { command = "clangd" }
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "cpp"
|
|
scope = "source.cpp"
|
|
injection-regex = "cpp"
|
|
file-types = ["cc", "cpp", "hpp", "h"]
|
|
roots = []
|
|
|
|
language-server = { command = "clangd" }
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "go"
|
|
scope = "source.go"
|
|
injection-regex = "go"
|
|
file-types = ["go"]
|
|
roots = ["Gopkg.toml", "go.mod"]
|
|
|
|
language-server = { command = "gopls" }
|
|
# TODO: gopls needs utf-8 offsets?
|
|
indent = { tab-width = 4, unit = "\t" }
|
|
|
|
[[language]]
|
|
name = "javascript"
|
|
scope = "source.js"
|
|
injection-regex = "^(js|javascript)$"
|
|
file-types = ["js"]
|
|
roots = []
|
|
# TODO: highlights-jsx, highlights-params
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "typescript"
|
|
scope = "source.ts"
|
|
injection-regex = "^(ts|typescript)$"
|
|
file-types = ["ts"]
|
|
roots = []
|
|
# TODO: highlights-jsx, highlights-params
|
|
|
|
language-server = { command = "typescript-language-server", args = ["--stdio"] }
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "css"
|
|
scope = "source.css"
|
|
injection-regex = "css"
|
|
file-types = ["css"]
|
|
roots = []
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "html"
|
|
scope = "text.html.basic"
|
|
injection-regex = "html"
|
|
file-types = ["html"]
|
|
roots = []
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "python"
|
|
scope = "source.python"
|
|
injection-regex = "python"
|
|
file-types = ["py"]
|
|
roots = []
|
|
|
|
language-server = { command = "pyls" }
|
|
# TODO: pyls needs utf-8 offsets
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "ruby"
|
|
scope = "source.ruby"
|
|
injection-regex = "ruby"
|
|
file-types = ["rb"]
|
|
roots = []
|
|
|
|
language-server = { command = "solargraph", args = ["stdio"] }
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "bash"
|
|
scope = "source.bash"
|
|
injection-regex = "bash"
|
|
file-types = ["sh", "bash"]
|
|
roots = []
|
|
|
|
language-server = { command = "bash-language-server", args = ["start"] }
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
[[language]]
|
|
name = "php"
|
|
scope = "source.php"
|
|
injection-regex = "php"
|
|
file-types = ["php"]
|
|
roots = []
|
|
|
|
indent = { tab-width = 2, unit = " " }
|
|
|
|
# [[language]]
|
|
# name = "haskell"
|
|
# scope = "source.haskell"
|
|
# injection-regex = "haskell"
|
|
# file-types = ["hs"]
|
|
# roots = []
|
|
#
|
|
# indent = { tab-width = 2, unit = " " }
|