mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-27 00:11:06 +01:00
14 lines
372 B
Lua
14 lines
372 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/polarmutex/beancount-language-server#installation
|
|
---
|
|
--- See https://github.com/polarmutex/beancount-language-server#configuration for configuration options
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'beancount-language-server', '--stdio' },
|
|
filetypes = { 'beancount', 'bean' },
|
|
root_markers = { '.git' },
|
|
init_options = {},
|
|
}
|