about summary refs log tree commit diff
path: root/config/kakoune/default.nix
blob: aade2eca775f7e0fe5199f1ae4a4b70987843ce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ configTools, kakoune, fzf, tmux }:

let
  kakrc = import ./kakrc.nix { inherit fzf tmux; };

in
  configTools.xdgConfig {
    package = kakoune;
    executable = "kak";
    path = "kak/kakrc";
    text = kakrc;
  }