{ ... }: { imports = [ ./neoclip.nix # Persistent clipboard. ./software-licenses.nix # View common software licenses. ]; plugins.telescope = { enable = true; # Install some telescope extensions. extensions = { # Enable native fuzzy finder. fzf-native = { enable = true; }; }; # Configure our telescope keymaps. keymaps = { "ff" = { action = "find_files"; options = { desc = "Find project files"; }; }; "fb" = { action = "buffers"; options = { desc = "Find open buffers"; }; }; "/" = { action = "live_grep"; options = { desc = "Grep (root dir)"; }; }; ":" = { action = "command_history"; options = { desc = "Command History"; }; }; "p" = { action = "neoclip"; options.desc = "Persistent Clipboard"; }; "sc" = { action = "commands"; options = { desc = "Search Commands"; }; }; "sl" = { action = "software-licenses find"; options = { desc = "Search Software Licenses"; }; }; }; }; }