va a ciapa i ratt

This commit is contained in:
Andrea Ciceri 2023-06-16 10:07:37 +02:00
parent fac91af11a
commit 8346c9f02c
No known key found for this signature in database
43 changed files with 909 additions and 446 deletions

View file

@ -1,13 +1,12 @@
{
config,
lib,
pkgs,
...
}: {
programs.helix = {
enable = true;
settings = {
theme = "onedark";
theme = "dracula";
editor = {
indent-guides.render = true;
cursor-shape = {
@ -15,7 +14,10 @@
normal = "block";
select = "underline";
};
true-color = true; # to make colors coherent when in ssh
};
};
};
home.sessionVariables.EDITOR = lib.mkForce "${config.programs.helix.package}/bin/helix";
programs.nushell.environmentVariables.EDITOR = lib.mkForce config.home.sessionVariables.EDITOR;
}