summaryrefslogtreecommitdiff
path: root/nvim/lsp/beancount.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lsp/beancount.lua')
-rwxr-xr-xnvim/lsp/beancount.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/nvim/lsp/beancount.lua b/nvim/lsp/beancount.lua
new file mode 100755
index 0000000..d14ae25
--- /dev/null
+++ b/nvim/lsp/beancount.lua
@@ -0,0 +1,11 @@
+---@brief
+---
+--- https://github.com/polarmutex/beancount-language-server#installation
+---
+--- See https://github.com/polarmutex/beancount-language-server#configuration for configuration options
+return {
+ cmd = { 'beancount-language-server', '--stdio' },
+ filetypes = { 'beancount', 'bean' },
+ root_markers = { '.git' },
+ init_options = {},
+}