nix-config/modules/home/shell/default.nix
2024-06-13 23:47:00 -04:00

31 lines
434 B
Nix

{...}: {
imports = [
./fish.nix
./git.nix
./macchina.nix
./wezterm.nix
./nushell
];
programs = {
atuin = {
enable = true;
settings = {
inline_height = 20;
show_preview = true;
style = "compact";
};
};
bat = {
enable = true;
catppuccin.enable = true;
};
zoxide = {
enable = true;
options = ["--cmd" "cd"];
};
};
}