aboutsummaryrefslogtreecommitdiff
path: root/programs/atuin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'programs/atuin.nix')
-rw-r--r--programs/atuin.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/programs/atuin.nix b/programs/atuin.nix
new file mode 100644
index 0000000..39e5d89
--- /dev/null
+++ b/programs/atuin.nix
@@ -0,0 +1,20 @@
1{
2 programs.atuin = {
3 enable = true;
4 enableBashIntegration = true;
5 flags = [
6 "--disable-up-arrow"
7 ];
8 settings = {
9 invert = true;
10 history_format = "{command}";
11 theme.name = "minimal";
12 style = "compact";
13 inline_height = 15;
14 prefers_reduced_motion = true;
15 show_help = false;
16 show_tabs = false;
17 enter_accept = true;
18 };
19 };
20}