mirror of
https://github.com/oxalica/nil.git
synced 2024-11-25 18:41:40 +03:00
52 lines
1.6 KiB
Markdown
52 lines
1.6 KiB
Markdown
## LSP Configuration
|
|
|
|
There are some tunable options and settings for `nil`.
|
|
They are retrieved via LSP and support runtime modification.
|
|
|
|
All settings are nested under a key `"nil"`.
|
|
For example, `formatting.command` means to write
|
|
`"nil": { "formatting": { "command": ["your-command"] } }`
|
|
in JSON, not `"nil.formatting.command": ["wrong"]`.
|
|
|
|
The place to write LSP configurations differs between clients.
|
|
Please check the documentation of your LSP client (usually the editor or editor plugins).
|
|
There are some examples for common editor/plugins in [README](../README.md).
|
|
|
|
### Reference
|
|
|
|
The values shown here are the default values.
|
|
|
|
```jsonc
|
|
{
|
|
"nil": {
|
|
"formatting": {
|
|
// External formatter command (with arguments).
|
|
// It should accepts file content in stdin and print the formatted code into stdout.
|
|
// Type: [string] | null
|
|
// Example: ["nixpkgs-fmt"]
|
|
"command": null,
|
|
},
|
|
"diagnostics": {
|
|
// Ignored diagnostic kinds.
|
|
// The kind identifier is a snake_cased_string usually shown together
|
|
// with the diagnostic message.
|
|
// Type: [string]
|
|
// Example: ["unused_binding", "unused_with"]
|
|
"ignored": [],
|
|
// Files to exclude from showing diagnostics. Useful for generated files.
|
|
// It accepts an array of paths. Relative paths are joint to the workspace root.
|
|
// Glob patterns are currently not supported.
|
|
// Type: [string]
|
|
// Example: ["Cargo.nix"]
|
|
"excludedFiles": [],
|
|
},
|
|
"nix": {
|
|
// The path to the `nix` binary.
|
|
// Type: string
|
|
// Example: "/run/current-system/sw/bin/nix"
|
|
"binary": "nix",
|
|
},
|
|
},
|
|
}
|
|
```
|