mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-16 19:22:00 -05:00
20 lines
287 B
Nix
20 lines
287 B
Nix
{
|
|
plugins.yazi.enable = true;
|
|
|
|
keymaps = [
|
|
{
|
|
mode = "n";
|
|
key = "<leader>E";
|
|
action.__raw = ''
|
|
function()
|
|
require('yazi').yazi()
|
|
end
|
|
'';
|
|
options = {
|
|
desc = "Yazi toggle";
|
|
silent = true;
|
|
};
|
|
}
|
|
];
|
|
}
|