Modularize nixvim config

This commit is contained in:
2025-07-06 22:46:23 +02:00
parent 4131b9b116
commit 407f943102
10 changed files with 166 additions and 129 deletions
@@ -0,0 +1,19 @@
{ pkgs, ... }: {
imports = [
./treesitter.nix
./lualine.nix
./nvim-autopairs.nix
./which-key.nix
];
programs.nixvim = {
plugins = {
lz-n.enable = true;
indent-blankline.enable = true;
};
extraPlugins = with pkgs.vimPlugins; [
vim-sleuth
];
};
}