mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-09 18:41:07 +01:00
Let's simplify things by defining all modules in `./plugins`, `./modules` and `./wrappers/modules`. Instead of currying `pkgs` into a bootstrapping module, we can require `defaultPkgs` be provided as a special arg. This refactor allows us to completely remove `flake-modules/modules.nix`!
20 lines
320 B
Nix
20 lines
320 B
Nix
{
|
|
imports = [
|
|
./misc
|
|
./autocmd.nix
|
|
./clipboard.nix
|
|
./colorscheme.nix
|
|
./commands.nix
|
|
./diagnostics.nix
|
|
./doc.nix
|
|
./editorconfig.nix
|
|
./filetype.nix
|
|
./highlights.nix
|
|
./keymaps.nix
|
|
./lua-loader.nix
|
|
./opts.nix
|
|
./output.nix
|
|
./plugins.nix
|
|
./warnings.nix
|
|
];
|
|
}
|