mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
14 lines
370 B
Nix
Executable file
14 lines
370 B
Nix
Executable file
{
|
|
programs.yazi = let
|
|
configPath = ./config;
|
|
keymapPath = import (configPath + /keymap.nix);
|
|
settingsPath = import (configPath + /settings.nix);
|
|
in {
|
|
enable = true;
|
|
enableNushellIntegration = true;
|
|
keymap = keymapPath;
|
|
settings = settingsPath;
|
|
};
|
|
# Keymap
|
|
# https://github.com/sxyazi/yazi/blob/main/yazi-config/preset/keymap.toml
|
|
}
|