diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-21 22:45:24 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-21 22:45:24 +0200 |
commit | 9c3e41e004ea0af3c0ef512b9d1d0b41ba39efff (patch) | |
tree | 51a4f196ef219f9175eb7b8a43ab7cadf9b7470b /modules | |
parent | fix(modules/*): Set all xdg-basedir env vars independently of active shell (diff) | |
download | nixos-config-9c3e41e004ea0af3c0ef512b9d1d0b41ba39efff.tar.gz nixos-config-9c3e41e004ea0af3c0ef512b9d1d0b41ba39efff.zip |
fix(modules/atuin): Swap cursor modes
All my software is using a block cursor in normal/command mode and a bar cursor for insert mode when doing `vi` emulation. `atuin` should do the same.
Diffstat (limited to 'modules')
-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 2ae6f791..2b9f32cf 100644 --- a/modules/by-name/at/atuin/module.nix +++ b/modules/by-name/at/atuin/module.nix @@ -45,8 +45,8 @@ in { keymap_mode = "vim-normal"; keymap_cursor = { emacs = "blink-underline"; - vim_insert = "blink-block"; - vim_normal = "blink-bar"; + vim_insert = "blink-bar"; + vim_normal = "blink-block"; }; # Who wants software, that automatically calls home?! |