-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
-
24
-
25
-
26
-
27
-
28
{ config, pkgs, ... }: {
programs = {
# Replacement for a shell history which records additional commands context
atuin = {
enable = true;
enableBashIntegration = false;
enableFishIntegration = false;
enableNushellIntegration = true;
enableZshIntegration = true;
settings = {
auto_sync = false;
show_preview = true;
keymap_mode = "vim-normal";
filter_mode = "directory";
filter_mode_shell_up_key_binding = "session";
update_check = false;
};
};
};
}