nix-community / vscode-nix-ide

Nix language support for VSCode editor [maintainer: @jnoortheen]
https://marketplace.visualstudio.com/items?itemName=jnoortheen.nix-ide
MIT License
263 stars 20 forks source link

Auto Fetch Flake Inputs #361

Open cloudyparts opened 9 months ago

cloudyparts commented 9 months ago

auto-fetch

I see this across all my Nix repositories but cannot find the configuration setting in the docs or plugin codebase.

Can you provide a full list of all configuration settings in the documentation?

.vscode/settings.json

{
  "nix.enableLanguageServer": true,
  "nix.serverPath": "nil",
  "nix.formatterPath": "nixpkgs-fmt",
  "nix.serverSettings": {
    "nil": {
      "diagnostics": {
        "ignored": [
          "unused_binding",
          "unused_with"
        ]
      },
      "formatting": {
        "command": [
          "nixpkgs-fmt"
        ]
      }
    }
  }
}