40 lines
800 B
Nix
40 lines
800 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.atuin = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
settings = {
|
|
ctrl_n_shortcuts = true;
|
|
enter_accept = true;
|
|
filter_mode_shell_up_key_binding = "session";
|
|
history_filter = [ ];
|
|
inline_height = 8;
|
|
prefers_reduced_motion = true;
|
|
search_mode_shell_up_key_binding = "prefix";
|
|
show_help = false;
|
|
style = "compact";
|
|
sync_address = "https://atuin.aarn.shelman.io";
|
|
sync.records = true;
|
|
|
|
stats.common_subcommands = [
|
|
"cargo"
|
|
"git"
|
|
"go"
|
|
"jj"
|
|
"just"
|
|
"kubectl"
|
|
"nix"
|
|
"npm"
|
|
"pnpm"
|
|
"talosctl"
|
|
"task"
|
|
"yarn"
|
|
];
|
|
|
|
stats.common_prefix = [
|
|
"doas"
|
|
"sudo"
|
|
];
|
|
};
|
|
};
|
|
}
|