summaryrefslogtreecommitdiffstats
path: root/modules/plugins/ui/colorful-menu-nvim/colorful-menu-nvim.nix
blob: 075b3d9a11d2f72d6aa78c0a71fb8423c9de6b0c (plain)
1
2
3
4
5
6
7
8
9
{lib, ...}: let
  inherit (lib.options) mkEnableOption;
  inherit (lib.nvim.types) mkPluginSetupOption;
in {
  options.vim.ui.colorful-menu-nvim = {
    enable = mkEnableOption "treesitter highlighted completion menus [colorful-menu.nvim]";
    setupOpts = mkPluginSetupOption "colorful-menu-nvim" {};
  };
}