mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
13 lines
234 B
Lua
13 lines
234 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/pest-parser/pest-ide-tools
|
|
---
|
|
--- Language server for pest grammars.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'pest-language-server' },
|
|
filetypes = { 'pest' },
|
|
root_markers = { '.git' },
|
|
}
|