nix-community.nixvim/modules/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
609 B
Nix
Raw Permalink Normal View History

# 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 = [
./lsp
./misc
./autocmd.nix
./clipboard.nix
./colorscheme.nix
./commands.nix
2025-04-06 17:17:51 +02:00
./dependencies.nix
./diagnostic.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
];
}