mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-15 04:15:59 +01:00
12 lines
255 B
Nix
12 lines
255 B
Nix
{lib, ...}: let
|
|
inherit (lib.lists) concatLists;
|
|
inherit (lib.filesystem) listFilesRecursive;
|
|
in {
|
|
imports = concatLists [
|
|
# Configuration options for Neovim UI
|
|
(listFilesRecursive ./ui)
|
|
|
|
# vim.diagnostics
|
|
[./diagnostics.nix]
|
|
];
|
|
}
|