Add uv, python314, and ruff to extra packages. Enable Python format‑on‑save, use ruff as formatter and language server, and set tab size to 4. Configure ruff LSP with a bash wrapper and detailed inlay‑hint options.
13 lines
169 B
Nix
13 lines
169 B
Nix
{pkgs, ...}: {
|
|
programs.zed-editor.extraPackages = with pkgs; [
|
|
# biome
|
|
rust-analyzer
|
|
nixd
|
|
alejandra
|
|
opencode
|
|
uv
|
|
python314
|
|
ruff
|
|
];
|
|
}
|