diff options
| author | Github Actions <actions@github> | 2021-03-16 18:28:17 +0000 |
|---|---|---|
| committer | Github Actions <actions@github> | 2021-03-16 18:28:17 +0000 |
| commit | 26c499916ddac29675d316a099b376abf6a0aeaf (patch) | |
| tree | ae290dd225a1c618b957cdc892f665ffa24cdb39 | |
| parent | Merge pull request #783 from polarmutex/beancount (diff) | |
| download | nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.tar nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.tar.gz nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.tar.bz2 nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.tar.lz nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.tar.xz nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.tar.zst nvim-lspconfig-26c499916ddac29675d316a099b376abf6a0aeaf.zip | |
[docgen] Update CONFIG.md
skip-checks: true
| -rw-r--r-- | CONFIG.md | 33 |
1 files changed, 31 insertions, 2 deletions
@@ -6,6 +6,7 @@ that config. - [als](#als) - [angularls](#angularls) - [bashls](#bashls) +- [beancount](#beancount) - [ccls](#ccls) - [clangd](#clangd) - [clojure_lsp](#clojure_lsp) @@ -160,6 +161,28 @@ require'lspconfig'.bashls.setup{} root_dir = vim's starting directory ``` +## beancount + +https://github.com/polarmutex/beancount-language-server#installation + +See https://github.com/polarmutex/beancount-language-server#configuration for configuration options + + +```lua +require'lspconfig'.beancount.setup{} + + Commands: + + Default Values: + cmd = { "beancount-langserver" } + filetypes = { "beancount" } + init_options = { + journalFile = "", + pythonPath = "python3" + } + root_dir = root_pattern("elm.json") +``` + ## ccls https://github.com/MaskRay/ccls/wiki @@ -282,9 +305,9 @@ This server accepts configuration via the `settings` key. - **`codeQL.queryHistory.format`**: `string` - Default: `"[%t] %q on %d - %s"` + Default: `"%q on %d - %s, %r result count [%t]"` - Default string for how to label query history items\. \%t is the time of the query\, \%q is the query name\, \%d is the database name\, and \%s is a status string\. + Default string for how to label query history items\. \%t is the time of the query\, \%q is the query name\, \%d is the database name\, \%r is the number of results\, and \%s is a status string\. - **`codeQL.resultsDisplay.pageSize`**: `integer` @@ -4208,6 +4231,8 @@ This server accepts configuration via the `settings` key. - **`rust-analyzer.procMacro.enable`**: `boolean` + Default: `true` + null - **`rust-analyzer.procMacro.server`**: `null|string` @@ -4792,6 +4817,10 @@ This server accepts configuration via the `settings` key. null +- **`Lua.runtime.builtin`**: `object` + + null + - **`Lua.runtime.fileEncoding`**: `enum { "utf8", "ansi" }` Default: `"utf8"` |
