2024-07-05 14:25:21 +01:00
|
|
|
# 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.
|
2024-02-08 14:14:25 +01:00
|
|
|
{
|
|
|
|
imports = [
|
2025-04-28 17:59:05 +01:00
|
|
|
./lsp
|
2024-07-02 13:30:29 +01:00
|
|
|
./misc
|
2024-02-08 14:14:25 +01:00
|
|
|
./autocmd.nix
|
|
|
|
./clipboard.nix
|
|
|
|
./colorscheme.nix
|
|
|
|
./commands.nix
|
2025-04-06 17:17:51 +02:00
|
|
|
./dependencies.nix
|
2025-04-26 19:26:21 +01:00
|
|
|
./diagnostic.nix
|
2024-02-08 14:14:25 +01:00
|
|
|
./doc.nix
|
|
|
|
./editorconfig.nix
|
2024-07-07 16:09:31 +01:00
|
|
|
./files.nix
|
2024-02-08 14:14:25 +01:00
|
|
|
./filetype.nix
|
|
|
|
./highlights.nix
|
|
|
|
./keymaps.nix
|
2024-12-05 20:47:26 +00:00
|
|
|
./lazyload.nix
|
2024-02-08 14:14:25 +01:00
|
|
|
./lua-loader.nix
|
2024-03-29 20:58:44 +00:00
|
|
|
./opts.nix
|
2024-02-08 14:14:25 +01:00
|
|
|
./output.nix
|
2024-07-07 20:22:39 +03:00
|
|
|
./performance.nix
|
2024-02-08 14:14:25 +01:00
|
|
|
./plugins.nix
|
|
|
|
];
|
|
|
|
}
|