aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/taplo.lua
blob: f9a14631ece953c28451b63068b681d0292b6381 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'

configs.taplo = {
  default_config = {
    cmd = { 'taplo-lsp', 'run' },
    filetypes = { 'toml' },
    root_dir = function(fname)
      return util.root_pattern '*.toml'(fname) or util.find_git_ancestor(fname) or util.path.dirname(fname)
    end,
  },
  docs = {
    description = [[
https://taplo.tamasfe.dev/lsp/

Language server for Taplo, a TOML toolkit.

`taplo-lsp` can be installed via `cargo`:
```sh
cargo install taplo-lsp
```
    ]],
    default_config = {
      root_dir = [[root_pattern("*.toml", ".git") or dirname]],
    },
  },
}