forked from pub-solar/os
4cf8048807
Overlays now live globally in the overlays directory. They will be pulled into the flake and the rest of your configuration automatically from there.
16 lines
380 B
Nix
16 lines
380 B
Nix
final: prev: {
|
|
kakoune = prev.kakoune.override {
|
|
configure.plugins = with final.kakounePlugins; [
|
|
(kak-fzf.override { fzf = final.skim; })
|
|
kak-auto-pairs
|
|
kak-buffers
|
|
kak-powerline
|
|
];
|
|
};
|
|
|
|
# wrapper to specify config dir
|
|
kakoune-config = prev.writeShellScriptBin "k" ''
|
|
XDG_CONFIG_HOME=/etc/xdg exec ${final.kakoune}/bin/kak "$@"
|
|
'';
|
|
}
|