mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
27 lines
506 B
Lua
27 lines
506 B
Lua
---@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 = {},
|
|
}
|