diff --git a/modules/_neovim/default.nix b/modules/_neovim/default.nix index 08f5626..b11f23a 100644 --- a/modules/_neovim/default.nix +++ b/modules/_neovim/default.nix @@ -5,7 +5,6 @@ ./options.nix ./plugins/blink-cmp.nix ./plugins/conform.nix - ./plugins/fff.nix ./plugins/grug-far.nix ./plugins/harpoon.nix ./plugins/hunk.nix diff --git a/modules/_neovim/mappings.nix b/modules/_neovim/mappings.nix index 4119887..a07df9a 100644 --- a/modules/_neovim/mappings.nix +++ b/modules/_neovim/mappings.nix @@ -66,13 +66,13 @@ { mode = "n"; key = "ff"; - action.__raw = "function() require('fff').find_files() end"; + action = ":Pick files"; options.desc = "Search files"; } { mode = "n"; key = "fg"; - action.__raw = "function() require('fff').live_grep() end"; + action = ":Pick grep_live"; options.desc = "Grep"; } { diff --git a/modules/_neovim/plugins/fff.nix b/modules/_neovim/plugins/fff.nix deleted file mode 100644 index a858a69..0000000 --- a/modules/_neovim/plugins/fff.nix +++ /dev/null @@ -1,8 +0,0 @@ -{pkgs, ...}: { - programs.nixvim = { - extraPlugins = [pkgs.vimPlugins.fff-nvim]; - extraConfigLua = '' - require('fff').setup({}) - ''; - }; -}