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