1
0
Fork 0
dotfiles/home/programs/atuin.nix

32 lines
616 B
Nix
Raw Normal View History

2023-02-27 17:51:39 +01:00
{
programs.atuin = {
enable = true;
enableBashIntegration = false;
enableZshIntegration = false;
enableFishIntegration = true;
settings = {
2023-02-27 18:00:01 +01:00
auto_sync = true;
2023-03-12 20:53:03 +01:00
sync_address = "https://atuin-sync.kempkens.io";
sync_frequency = "30m";
2023-02-27 17:51:39 +01:00
update_check = false;
style = "auto";
2023-04-03 14:04:54 +02:00
inline_height = 40;
2023-02-27 17:51:39 +01:00
search_mode = "fuzzy";
2024-07-17 11:38:21 +02:00
filter_mode_shell_up_key_binding = "directory";
2023-02-27 17:51:39 +01:00
history_filter = [
"^base64decode"
2024-04-10 15:44:34 +02:00
"^instagram-dl"
2024-04-11 20:06:06 +02:00
"^mp4concat"
2023-02-27 17:51:39 +01:00
];
};
};
2024-04-10 15:44:34 +02:00
programs.fish.shellInit = ''
set -x fish_history ""
'';
2023-02-27 17:51:39 +01:00
}