dotfiles.nix/home/kakoune.nix

28 lines
494 B
Nix
Raw Normal View History

2022-07-21 02:19:32 +00:00
{ pkgs, ... }: {
2022-07-04 14:46:52 +00:00
programs.kakoune = {
enable = true;
2022-07-21 02:19:32 +00:00
config = {
numberLines = {
enable = true;
highlightCursor = true;
relative = true;
};
ui = {
enableMouse = true;
};
};
plugins = with pkgs.kakounePlugins; [
active-window-kak
auto-pairs-kak
fzf-kak
kak-lsp
kakboard
kakoune-state-save
kakoune-vertical-selection
# needs luar
pkgs.luar
tabs-kak
];
2022-07-04 14:46:52 +00:00
};
}