refactor: biggest cleanup of my life

This commit is contained in:
2026-02-19 16:29:24 +01:00
parent 94dc0e0927
commit c15e65fece
35 changed files with 104 additions and 260 deletions
+34
View File
@@ -0,0 +1,34 @@
{
config,
lib,
...
}:
{
imports = [
./opts.nix
./keymaps.nix
./plugins
];
options.kekleo.neovim = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to enable neovim.";
};
config = lib.mkIf config.kekleo.neovim {
programs.nixvim = {
enable = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
defaultEditor = true;
colorschemes.tokyonight.enable = true;
clipboard.providers.wl-copy.enable = true;
globals.mapleader = " ";
};
};
}