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