diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-18 23:41:26 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-18 23:41:26 +0200 |
commit | 77731534333ba0ea84e366a4e8276c4364edbc1d (patch) | |
tree | f36cce1d75b6fdc2b115bb9338cdb6ae46ddd769 /modules/by-name | |
parent | fix(modules/atuin/secrets): Improve secret key formatting (diff) | |
download | nixos-config-77731534333ba0ea84e366a4e8276c4364edbc1d.tar.gz nixos-config-77731534333ba0ea84e366a4e8276c4364edbc1d.zip |
fix(modules/atuin): Don't try to save space at all costs
`atuin` really breaks with these settings. Thus, it's better to allow it to take up more space.
Diffstat (limited to 'modules/by-name')
-rw-r--r-- | modules/by-name/at/atuin/module.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/by-name/at/atuin/module.nix b/modules/by-name/at/atuin/module.nix index 7adc34e1..76f0df05 100644 --- a/modules/by-name/at/atuin/module.nix +++ b/modules/by-name/at/atuin/module.nix @@ -38,8 +38,8 @@ in { # Save some space, by setting the mode to 'compact' and the height to 1 (meaning # `atuin` may only use 1 line in the terminal). - style = "compact"; - inline_height = 1; + style = "auto"; + inline_height = 0; # 'k' and 'j' to move up and down. keymap_mode = "vim-normal"; |