diff options
Diffstat (limited to 'CONFIG.md')
| -rw-r--r-- | CONFIG.md | 27 |
1 files changed, 25 insertions, 2 deletions
@@ -532,7 +532,7 @@ This server accepts configuration via the `settings` key. Default: `true` - Whether to include symbols that have not been imported in the code completion list and automatically insert the required import when selecting them\. + Whether to include symbols that have not been imported in the code completion list and automatically insert the required import when selecting them \(requires restart\)\. - **`dart.buildRunnerAdditionalArgs`**: `array` @@ -778,6 +778,12 @@ This server accepts configuration via the `settings` key. Whether to set newly connected devices as the current device in Flutter projects\. +- **`dart.flutterShowWebServerDevice`**: `enum { "remote", "always" }` + + Default: `"remote"` + + null + - **`dart.flutterStructuredErrors`**: `boolean` Default: `true` @@ -828,6 +834,12 @@ This server accepts configuration via the `settings` key. The maximum length of a line of code\. This is used by the document formatter\. +- **`dart.lspSnippetTextEdits`**: `boolean` + + Default: `true` + + null + - **`dart.maxLogLineLength`**: `number` Default: `2000` @@ -4253,7 +4265,7 @@ This server accepts configuration via the `settings` key. - **`rust-analyzer.inlayHints.maxLength`**: `null|integer` - Default: `vim.NIL` + Default: `25` null @@ -4749,6 +4761,10 @@ require'lspconfig'.sumneko_lua.setup { [vim.fn.expand('$VIMRUNTIME/lua/vim/lsp')] = true, }, }, + -- Do not send telemetry data containing a randomized but unique identifier + telemetry = { + enable = false, + }, }, }, } @@ -5030,6 +5046,13 @@ require'lspconfig'.sumneko_lua.setup{} filetypes = { "lua" } log_level = 2 root_dir = root_pattern(".git") or bufdir + settings = { + Lua = { + telemetry = { + enable = false + } + } + } ``` ## svelte |
