This commit is contained in:
joygnu 2024-08-05 20:37:10 +02:00
parent 9eb73324df
commit 596e52c526

View file

@ -1,11 +1,9 @@
{ lib, ... }: { pkgs, ... }:
{ {
programs.helix = { programs.helix = {
enable = true; enable = true;
defaultEditor = true; defaultEditor = true;
# themes = lib.mkForce "gruvbox";
settings = { settings = {
# lsp.display-messages = true;
keys.normal = { keys.normal = {
space.space = "file_picker"; space.space = "file_picker";
Z.Z = ":wq"; Z.Z = ":wq";
@ -13,4 +11,8 @@
}; };
}; };
}; };
home.packages = with pkgs; [
nil
];
} }