mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
28 lines
609 B
Nix
28 lines
609 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 = [
|
|
./lsp
|
|
./misc
|
|
./autocmd.nix
|
|
./clipboard.nix
|
|
./colorscheme.nix
|
|
./commands.nix
|
|
./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
|
|
];
|
|
}
|