mirror of
https://github.com/exo-explore/exo.git
synced 2025-12-23 22:27:50 -05:00
30 lines
658 B
JSON
30 lines
658 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": {
|
|
"nix_python": {
|
|
"binary": {
|
|
"path": "nix",
|
|
"arguments": [
|
|
"run",
|
|
"--quiet",
|
|
"--no-warn-dirty",
|
|
"--no-allow-import-from-derivation",
|
|
"--print-build-logs",
|
|
"never",
|
|
"${projectRoot}#python-lsp",
|
|
"--",
|
|
"--stdio"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"languages": {
|
|
"Python": {
|
|
"language_servers": ["nix_python"]
|
|
}
|
|
}
|
|
}
|