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 diff --git a/zshrc b/zshrc index 3a8f2fa..7f53f52 100644 --- a/zshrc +++ b/zshrc @@ -65,14 +65,20 @@ 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 . $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