plugins.flutter-tools.settings.lsp.capabilities

Provide a custom value for capabilities. Example: lsp_status capabilities.

Type: null or raw lua code

Default: null

Example: lib.nixvim.mkRaw "function(config)\n config.specificThingIDontWant = false\n return config\nend\n"

Declared by:

plugins.flutter-tools.settings.lsp.on_attach

Provide a custom on_attach function.

Type: null or raw lua code

Default: null

Declared by:

plugins.flutter-tools.settings.lsp.settings

Settings for the dart language server. See here for details on each option.

Type: null or (attribute set of anything)

Default: null

Example:

{
  analysisExcludedFolders = [
    "<path-to-flutter-sdk-packages>"
  ];
  completeFunctionCalls = true;
  enableSnippets = true;
  renameFilesWithClasses = "prompt";
  showTodos = true;
  updateImportsOnRename = true;
}

Declared by: