1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 16:10:45 +01:00

feat: add atuin and nom, adjust configs

This commit is contained in:
Ryan Cao 2024-03-11 22:07:00 +08:00
parent 2186255b7e
commit 3ea99dd18a
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
15 changed files with 113 additions and 91 deletions

18
home/programs/atuin.nix Normal file
View file

@ -0,0 +1,18 @@
_: {
programs.atuin = {
enable = true;
enableBashIntegration = false;
enableFishIntegration = true;
enableZshIntegration = true;
flags = ["--disable-up-arrow"];
settings = {
update_check = false;
history_filter = [
"^clear"
"^exit"
];
};
};
}