22 lines
531 B
JSON
22 lines
531 B
JSON
// Folder-specific settings
|
|
//
|
|
// For a full list of overridable settings, and general information on folder-specific settings,
|
|
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
|
|
{
|
|
"lsp": {
|
|
"rust-analyzer": {
|
|
"initialization_options": {
|
|
"check": {
|
|
"command": "clippy" // rust-analyzer.check.command (default: "check")
|
|
}
|
|
}
|
|
},
|
|
"nu": {
|
|
"binary": {
|
|
"path": "/home/fantasypvp/.cargo/bin/nu",
|
|
"arguments": ["--lsp"]
|
|
}
|
|
}
|
|
}
|
|
}
|