{ lib, ... }: lib.nixvim.plugins.mkNeovimPlugin { name = "fff"; package = "fff-nvim"; description = "A fast fuzzy file finder."; maintainers = [ lib.maintainers.GaetanLepage ]; settingsExample = { base_path = lib.nixvim.nestedLiteralLua "vim.fn.getcwd()"; max_results = 100; layout = { height = 0.8; width = 0.8; preview_position = "right"; }; key_bindings = { close = [ "" "" ]; select_file = ""; open_split = ""; open_vsplit = ""; open_tab = ""; move_up = [ "" "" ]; move_down = [ "" "" ]; }; }; }