diff --git a/plugins/by-name/fzf-lua/default.nix b/plugins/by-name/fzf-lua/default.nix index 92330dd4..df2cb855 100644 --- a/plugins/by-name/fzf-lua/default.nix +++ b/plugins/by-name/fzf-lua/default.nix @@ -84,20 +84,22 @@ lib.nixvim.plugins.mkNeovimPlugin { ); description = "Keymaps for Fzf-Lua."; default = { }; - example = { - "fg" = "live_grep"; - "" = { - action = "git_files"; - settings = { - previewers.cat.cmd = "${pkgs.coreutils}/bin/cat"; - winopts.height = 0.5; - }; - options = { - silent = true; - desc = "Fzf-Lua Git Files"; + example = lib.literalExpression '' + { + "fg" = "live_grep"; + "" = { + action = "git_files"; + settings = { + previewers.cat.cmd = lib.getExe' pkgs.coreutils "cat"; + winopts.height = 0.5; + }; + options = { + silent = true; + desc = "Fzf-Lua Git Files"; + }; }; }; - }; + ''; }; };