nix-community.nixvim/modules/default.nix
Matt Sturgeon 6348336db0
modules/lazyload: init w/ assertion
Adds a global lazyloading assertion. No module options yet.
2024-12-05 20:48:04 +00:00

26 lines
577 B
Nix

# This module includes the nixvim modules that should always be evaluated.
#
# You may want to use the `/modules/top-level` module instead, unless you're
# using this in a submodule nested within another nixvim config.
{
imports = [
./misc
./autocmd.nix
./clipboard.nix
./colorscheme.nix
./commands.nix
./diagnostics.nix
./doc.nix
./editorconfig.nix
./files.nix
./filetype.nix
./highlights.nix
./keymaps.nix
./lazyload.nix
./lua-loader.nix
./opts.nix
./output.nix
./performance.nix
./plugins.nix
];
}