mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
15 lines
332 B
Nix
15 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";
|
|
};
|
|
};
|
|
}
|