fixed tmux

This commit is contained in:
L. Kraven
2024-06-15 12:36:04 -07:00
parent 7cf6015a9f
commit 5eb0504897
3 changed files with 13 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
set-option -sa terminal-overrides ",xterm*:Tc"
set-option -g status-position top
# set-option -g status-position top
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.config/zinit**
.config/tmux/plugins**

11
.zshrc
View File

@@ -15,6 +15,17 @@ if [ ! -f "${ZINIT_HOME}/zinit.zsh" ]; then
git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
fi
# Download Tmux Plugin Manager
TMUX_HOME="${HOME}/.config/tmux"
# Download Tmux plugin manager
if [ ! -d "${TMUX_HOME}/plugins/tpm" ]; then
mkdir -p "${TMUX_HOME}/plugins"
git clone https://github.com/tmux-plugins/tpm $TMUX_HOME/plugins/tpm
fi
tmux source ${TMUX_HOME}/tmux.conf
#extend path
path=(~/bin $path)
path=(~/.local/bin $path)