cornflake/home-manager/zeditor.nix
2026-02-19 09:30:42 +09:00

23 lines
542 B
Nix

{ pkgs, ... }:
{
programs.zed-editor = {
enable = true;
extensions = [ "nix" "toml" "rust" ];
userSettings = {
theme = {
mode = "system";
dark = "Kanagawa Dragon";
light = "Kanagawa Lotus";
};
hour_format = "hour24";
vim_mode = true;
buffer_font_size = 12.0;
buffer_font_family = "PlemolJP Console NF";
};
};
fonts.fontconfig.enable = true;
home.file.".local/share/fonts/plemoljp".source = "${pkgs.plemoljp-nf}/share/fonts/truetype/plemoljp-nf-console";
}