aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrej KolĨin <self@kaathewise.net>2025-12-14 18:59:00 +0000
committerGitHub <noreply@github.com>2025-12-14 13:59:00 -0500
commit235ca6b9bec361715af64c76592ace8b9d9d8832 (patch)
tree91618fa469b9eb1cd22ece6d399055d817d5db0a
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.tar
nvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.tar.gz
nvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.tar.bz2
nvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.tar.lz
nvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.tar.xz
nvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.tar.zst
nvim-lspconfig-235ca6b9bec361715af64c76592ace8b9d9d8832.zip
feat: brioche #4238
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/
-rw-r--r--lsp/brioche.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/lsp/brioche.lua b/lsp/brioche.lua
new file mode 100644
index 00000000..24bf7e1f
--- /dev/null
+++ b/lsp/brioche.lua
@@ -0,0 +1,12 @@
+---@brief
+---
+--- https://github.com/brioche-dev/brioche
+---
+--- `Brioche Language Server`.
+
+---@type vim.lsp.Config
+return {
+ cmd = { 'brioche', 'lsp' },
+ filetypes = { 'brioche' },
+ root_markers = { 'project.bri' },
+}