dotfiles/home-modules/applications/zed-editor.nix
Fabian Hauser e70f04a451
All checks were successful
CI / build (push) Successful in 1m42s
zed: Switch to typos plugin
2025-03-05 16:20:06 +02:00

30 lines
409 B
Nix

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