Compare commits

..

2 Commits

Author SHA1 Message Date
c21bfeb9fc feat: Improve settings 2025-01-25 18:31:13 +01:00
47f58391bc feat: improve plugins management 2025-01-25 18:31:13 +01:00

View File

@ -73,9 +73,10 @@ set -g @plugin 'erikw/tmux-powerline'
set -g @plugin "nordtheme/tmux" set -g @plugin "nordtheme/tmux"
# Initialize TMUX plugin manager (keep this section at the very bottom of tmux.conf) # Initialize TMUX plugin manager (keep this section at the very bottom of tmux.conf)
%hidden PLUGINGDIR="~/.local/state/tmux/plugins" %hidden TMUX_PLUGINS_DIR="~/.local/state/tmux/plugins"
if "test ! -d ${PLUGINGDIR}" { set-environment -g TMUX_PLUGIN_MANAGER_PATH "${TMUX_PLUGINS_DIR}"
run "mkdir -p $PLUGINGDIR && git clone https://github.com/tmux-plugins/tpm ${PLUGINGDIR}/tpm && ${PLUGINGDIR}/tpm/tpm && ${PLUGINGDIR}/tpm/bin/install_plugins" if "test ! -d ${TMUX_PLUGINS_DIR}" {
} { run "mkdir -p ${TMUX_PLUGINS_DIR} && git clone https://github.com/tmux-plugins/tpm ${TMUX_PLUGINS_DIR}/tpm"
run "${PLUGINGDIR}/tpm/tpm" run "${TMUX_PLUGINS_DIR}/tpm/bin/install_plugins"
} }
run "${TMUX_PLUGINS_DIR}/tpm/tpm"