This commit is contained in:
KemoNine 2022-05-19 22:47:31 -04:00
commit 35afb9e754
2 changed files with 6 additions and 1 deletions

View File

@ -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

6
zshrc
View File

@ -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