aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/dprint.lua
blob: 31acacdd3b76df4efa7527a6165af7806d0518e7 (plain)
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
---@brief
---
--- https://github.com/dprint/dprint
---
--- Pluggable and configurable code formatting platform written in Rust.

---@type vim.lsp.Config
return {
  cmd = { 'dprint', 'lsp' },
  filetypes = {
    'javascript',
    'javascriptreact',
    'typescript',
    'typescriptreact',
    'json',
    'jsonc',
    'markdown',
    'python',
    'toml',
    'rust',
    'roslyn',
    'graphql',
  },
  root_markers = { 'dprint.json', '.dprint.json', 'dprint.jsonc', '.dprint.jsonc' },
  settings = {},
}