nixos-config/home-manager/modules/neovim/plugins/yazi.nix
2024-08-18 23:58:42 -04:00

21 lines
353 B
Nix

{...}: {
programs.nixvim = {
plugins.yazi.enable = true;
keymaps = [
{
mode = "n";
key = "<leader>e";
action.__raw = ''
function()
require('yazi').yazi()
end
'';
options = {
desc = "Yazi toggle";
silent = true;
};
}
];
};
}