mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
14 lines
374 B
Nix
Executable file
14 lines
374 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
|
|
}
|