From 34937e95ac011b7b5582809c39a69474fff193c7 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Wed, 25 Sep 2024 14:09:47 +0200 Subject: [PATCH] fix: systemd status sideways scrolling, menuselect capital V which looks odd --- modules/home/zsh.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index fd677c4..6d0d912 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -18,6 +18,7 @@ # KEYTIMEOUT = 1; LANG = "en_US.UTF-8"; EDITOR = "nvim"; + SYSTEMD_LESS = "FRXMK"; # Fix weird sideways scrolling in systemctl status ... ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#808080"; ZSH_AUTOSUGGEST_USE_ASYNC = 1; HISTSIZE = 100000; @@ -93,7 +94,7 @@ bindkey -M menuselect 'h' vi-backward-char bindkey -M menuselect 'k' vi-up-line-or-history bindkey -M menuselect 'j' vi-down-line-or-history - bindkey -M menuselect 'l' Vi-forward-char + bindkey -M menuselect 'l' vi-forward-char '';