dotfiles/hm/shell/atuin.nix

25 lines
596 B
Nix
Raw Normal View History

2024-06-20 20:43:54 +02:00
{ pkgs, lib, config, ... }:
{
config = {
programs.atuin = {
enable = true;
enableBashIntegration = true;
enableZshIntegration = true;
settings = {
auto_sync = true;
sync_frequency = "5m";
sync_address = "https://atuin.frogeye.fr";
ctrl_n_shortcuts = true; # Cranberry uses Alt for i3
2024-06-20 22:52:20 +02:00
keymap_mode = "vim-insert";
enter_accept = true;
search_mode_shell_up_key_binding = "prefix";
show_tabs = false;
inline_height = 25;
2024-06-20 20:43:54 +02:00
};
flags = [
"--disable-up-arrow"
];
};
};
}