1

Set EDITOR, VISUAL in helix module

This commit is contained in:
2024-06-02 18:27:23 +02:00
parent 04350b59e8
commit 917beafedf

View File

@ -15,6 +15,11 @@ in {
options.modules.helix = import ./options.nix {inherit lib mylib;};
config = mkIf cfg.enable {
home.sessionVariables = {
EDITOR = "hx";
VISUAL = "hx";
};
programs.helix = {
enable = true;