aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGithub Actions <actions@github>2020-03-25 15:37:13 +0000
committerGithub Actions <actions@github>2020-03-25 15:37:13 +0000
commitd543e5e6f55c989882e1e7ec13d80f44507a89e9 (patch)
tree8d7724296fc7fcd96dda61cf40f88334062d3e59 /README.md
parentMerge pull request #178 from h-michael/deep-extend (diff)
downloadnvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.tar
nvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.tar.gz
nvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.tar.bz2
nvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.tar.lz
nvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.tar.xz
nvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.tar.zst
nvim-lspconfig-d543e5e6f55c989882e1e7ec13d80f44507a89e9.zip
[docgen] Update README.md
skip-checks: true
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
index 95b7c9a8..bc88fdca 100644
--- a/README.md
+++ b/README.md
@@ -2357,6 +2357,13 @@ This server accepts configuration via the `settings` key.
Execute build task from tasks.json file on save.
+- **`nim.enableNimsuggest`**: `boolean`
+
+ Default: `true`
+
+ Enable calling nimsuggest process to provide completion suggestions, hover suggestions, etc.
+ This option requires restart to take effect.
+
- **`nim.licenseString`**: `string`
Default: `""`
@@ -2373,11 +2380,25 @@ This server accepts configuration via the `settings` key.
Enable verbose logging of nimsuggest to use profile directory.
+- **`nim.nimprettyIndent`**: `integer`
+
+ Default: `0`
+
+ Nimpretty: set the number of spaces that is used for indentation
+ --indent:0 means autodetection (default behaviour).
+
+- **`nim.nimprettyMaxLineLen`**: `integer`
+
+ Default: `80`
+
+ Nimpretty: set the desired maximum line length (default: 80).
+
- **`nim.nimsuggestRestartTimeout`**: `integer`
Default: `60`
Nimsuggest will be restarted after this timeout in minutes, if 0 then restart disabled.
+ This option requires restart to take effect.
- **`nim.project`**: `array`
@@ -2385,6 +2406,12 @@ This server accepts configuration via the `settings` key.
Nim project file, if empty use current selected.
+- **`nim.projectMapping`**: `object`
+
+ Default: `vim.empty_dict()`
+
+ For non project mode list of per file project mapping using regex, for example ```{"(.*).inim": "$1.nim"}```
+
- **`nim.runOutputDirectory`**: `string`
Default: `""`
@@ -3271,6 +3298,12 @@ This server accepts configuration via the `settings` key.
Highlight Rust code (overrides built-in syntax highlighting)
+- **`rust-analyzer.inlayHints.chainingHints`**: `boolean`
+
+ Default: `true`
+
+ Whether to show inlay type hints for method chains
+
- **`rust-analyzer.inlayHints.maxLength`**: `null|integer`
Default: `20`