aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/beancount.lua
blob: 78b01f3b66c9857022cb80e21753391900388b93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
---@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 = {},
}