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

32 lines
616 B
Nix
Raw Normal View History

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