mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
22 lines
411 B
Nix
22 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
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|