nix-config/home-manager/_mixins/desktop/meld.nix
2024-05-23 15:02:20 -04:00

16 lines
332 B
Nix

{ lib, ... }:
with lib.hm.gvariant;
{
dconf.settings = {
"org/gnome/meld" = {
indent-width = 4;
insert-spaces-instead-of-tabs = true;
highlight-current-line = true;
show-line-numbers = true;
prefer-dark-theme = true;
highlight-syntax = true;
style-scheme = "Yaru-dark";
};
};
}