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' },
|
||
|
|
}
|