dotfiles/home-modules/applications/zed-editor.nix
Fabian Hauser 2a091f3b59
Some checks failed
CI / build (push) Failing after 43s
Make zed dark again
2025-03-03 15:46:42 +02:00

29 lines
408 B
Nix

{ pkgs, lib, ... }:
{
programs.zed-editor = {
enable = true;
extensions = [
"nix"
"cspell"
"latex"
"sql"
"toml"
"plantuml"
"helm"
"html"
"svelte"
"java"
"kotlin"
];
extraPackages = with pkgs; [
nixd
nodePackages.cspell
direnv
];
userSettings = lib.importJSON ./zed-editor/settings.json;
};
}