mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
An LSP for [Brioche]: a package manger which uses custom TypeScript-like recipe files. Repo: https://github.com/brioche-dev/brioche [Brioche]: https://brioche.dev/
13 lines
223 B
Lua
13 lines
223 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/brioche-dev/brioche
|
|
---
|
|
--- `Brioche Language Server`.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'brioche', 'lsp' },
|
|
filetypes = { 'brioche' },
|
|
root_markers = { 'project.bri' },
|
|
}
|