develop#kakoune: fix binary conflict

This commit is contained in:
Timothy DeHerrera 2019-12-17 18:00:31 -07:00
parent 23db288d40
commit 6368b95dcd
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
2 changed files with 3 additions and 3 deletions

View file

@ -14,8 +14,8 @@
PAGER = "less";
LESS = "-iFJMRWX -z-4 -x4";
LESSOPEN = "|${pkgs.lesspipe}/bin/lesspipe.sh %s";
EDITOR = "kak";
VISUAL = "kak";
EDITOR = "k";
VISUAL = "k";
};
environment.systemPackages = with pkgs; [

View file

@ -29,7 +29,7 @@
];
};
kakoune-config = super.writeShellScriptBin "kak" ''
kakoune-config = super.writeShellScriptBin "k" ''
XDG_CONFIG_HOME=/etc/xdg ${self.kakoune}/bin/kak "$@"
'';