nix-community / vscode-nix-ide

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

Nix IDE does not respect formatter path #287

Closed schuelermine closed 1 year ago

schuelermine commented 1 year ago

I’ve set nix.formatterPath to nixfmt and a store path for nixfmt, but it still uses nixpkgs-fmt.

hall commented 1 year ago

Do you have nix.enableLanguageServer set to true? If so, the extension doesn't register a document formatter, effectively ignoring nix.formatterPath, and instead relies on the language server to provide formatting (which, in the case of rnix-lsp, is provided by nixpkgs-fmt).

schuelermine commented 1 year ago

Yes, I do have that on. Thanks for the information.