From 1e20a789b802c670435eb3212462a924b1ebf494 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Thu, 19 May 2022 12:41:07 -0400 Subject: [PATCH 1/3] remove editor from tmux config ; not needed/old version incompatible --- tmux.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/tmux.conf b/tmux.conf index 9965e7e..846a954 100644 --- a/tmux.conf +++ b/tmux.conf @@ -1,7 +1,6 @@ # Misc/General set -g allow-rename on set -g pane-border-status bottom -set -g editor nano set -g history-limit 100000 set -g renumber-windows on set -g clock-mode-style 24 From d21b464ea02014b684dae8aad7970faae2449541 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Thu, 19 May 2022 13:10:02 -0400 Subject: [PATCH 2/3] add comments to zshrc ; attempt to block mosh predictions via zshrc --- zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zshrc b/zshrc index 7146008..96b2997 100644 --- a/zshrc +++ b/zshrc @@ -66,12 +66,17 @@ zstyle ':fzf-tab:complete:cd:*' fzf-preview 'exa -1 --color=always $realpath' export EDITOR="nano" export PATH=~/.local/bin:${PATH} +# asdf . $HOME/.asdf/asdf.sh +# aliases (before interactive, just in case) alias ls="exa" alias docker="sudo docker" alias podman="sudo podman" +# dont allow mosh prediction (override in zshrc.local) +export MOSH_PREDICTION_DISPLAY="never" + # local overrides test -f ~/.zshrc.local && source ~/.zshrc.local From ed764e0d2240e2c35c26a89aafedce71f3277859 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Thu, 19 May 2022 13:45:31 -0400 Subject: [PATCH 3/3] setup most as pager, wait on use as full less replacement --- zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/zshrc b/zshrc index 96b2997..33e7a4a 100644 --- a/zshrc +++ b/zshrc @@ -64,6 +64,7 @@ zstyle ':fzf-tab:complete:cd:*' fzf-preview 'exa -1 --color=always $realpath' # misc / general export EDITOR="nano" +export PAGER="most" export PATH=~/.local/bin:${PATH} # asdf