nix-community.nixvim/modules/default.nix
Matt Sturgeon 6c73350557
modules/diagnostic: rename diagnostics -> diagnostic.config
Currently we represent `vim.diagnostic.config()` as a top-level
`diagnostics` option. This means we have no clear namespace for
(e.g.) `vim.diagnostic.<action>` keymap functions.
2025-04-26 20:09:23 +01:00

27 lines
599 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
./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
];
}