mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
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.
27 lines
599 B
Nix
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
|
|
];
|
|
}
|