nix-community.nixvim/modules/default.nix
Matt Sturgeon 086873bed9
modules: refactor extraFiles
Moved `extraFiles` from `modules/output.nix` into its own file `modules/files.nix`.

Users should now assign text to a `text` attribute, however they could
also assign a file path to a `source` attribute instead.

The old method of directly assigning a string still works, and is
coerced to the new type along with a deprecation warning.
2024-07-07 16:42:47 +01:00

24 lines
536 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
./lua-loader.nix
./opts.nix
./output.nix
./plugins.nix
];
}