mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
21 lines
411 B
Nix
21 lines
411 B
Nix
let
|
|
mkExtension = import ./_mk-extension.nix;
|
|
in
|
|
mkExtension {
|
|
name = "zoxide";
|
|
package = "telescope-zoxide";
|
|
|
|
settingsExample = {
|
|
prompt_title = "Zoxide Folder List";
|
|
mappings = {
|
|
"<C-b>" = {
|
|
keepinsert = true;
|
|
action.__raw = ''
|
|
function(selection)
|
|
file_browser.file_browser({ cwd = selection.path })
|
|
end
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|