1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2025-02-13 00:12:55 +01:00
neovim-flake/modules/ui/noice/noice.nix

11 lines
169 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkEnableOption;
in {
options.vim.ui.noice = {
enable = mkEnableOption "noice-nvim UI modification library";
};
}