diff --git a/modules/nixvim/default.nix b/modules/nixvim/default.nix index 5e607fff..37f778d0 100644 --- a/modules/nixvim/default.nix +++ b/modules/nixvim/default.nix @@ -2,7 +2,6 @@ imports = [ ./keyunmaps.nix ./plugins/dressing-nvim.nix - ./plugins/firenvim.nix ./plugins/lush-nvim.nix ./plugins/legendary-nvim.nix ./plugins/nvim-config-local.nix diff --git a/modules/nixvim/plugins/firenvim.nix b/modules/nixvim/plugins/firenvim.nix deleted file mode 100644 index 427185d0..00000000 --- a/modules/nixvim/plugins/firenvim.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ config, lib, pkgs, helpers, ... }: - -let - cfg = config.plugins.firenvim; -in -{ - options.plugins.firenvim = { - enable = lib.mkEnableOption "Firenvim"; - - package = helpers.mkPluginPackageOption "firenvim" pkgs.vimPlugins.firenvim; - - settings = lib.mkOption { - type = with lib.types; attrsOf anything; - default = { }; - description = '' - Extra configuration options for Firenvim. - ''; - example = { - globalSettings = { alt = "all"; }; - localSettings = { - "\".*\"" = { - cmdline = "nvim"; - content = "text"; - priority = 0; - selector = "textarea"; - takeover = "always"; - }; - }; - }; - }; - }; - - config = lib.mkIf cfg.enable { - extraPlugins = [ cfg.package ]; - - globals.firenvim_config = cfg.settings; - }; -}