plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.files.excludeDirs

These directories will be ignored by rust-analyzer. They are relative to the workspace root, and globs are not supported. You may also need to add the folders to Code’s files.watcherExclude.

Type: null or (list of string)

Default: null

Plugin default: [ ]

plugins.rustaceanvim.settings.server.default_settings.rust-analyzer.files.watcher

Controls file watching implementation.

Values:

  • client: Use the client (editor) to watch files for changes
  • server: Use server-side file watching

Type: null or one of “client”, “server”

Default: null

Plugin default: "client"