diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index 8f334c0..4191da8 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -89,11 +89,11 @@ set-option -g display-panes-colour colour166 #orange # clock set-window-option -g clock-mode-colour colour64 #green +# buffer size +set -g history-limit 50000 + # list plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'Morantron/tmux-fingers' set -g @plugin 'tmux-plugins/tmux-yank' -run '~/.tmux/plugins/tpm/tpm' - -# buffer size -set -g history-limit 50000 +run '~/.config/tmux/plugins/tpm/tpm' diff --git a/docker-compose.yml b/docker-compose.yml index fab67b2..fd8a816 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,13 +9,15 @@ services: entrypoint: sleep command: infinity volumes: - - 'home_cache:/home/coder/.cache' - - 'home_local_share:/home/coder/.local/share' - './config/rtx:/home/coder/.config/rtx' - './config/tmux:/home/coder/.config/tmux' - './config/tmuxp:/home/coder/.config/tmuxp' - './config/nvim/lua/custom:/home/coder/.config/nvim/lua/custom' + - 'home_cache:/home/coder/.cache' + - 'home_local_share:/home/coder/.local/share' + - 'home_plugins_tmux:/home/coder/.config/tmux/plugins' volumes: home_cache: {} home_local_share: {} + home_plugins_tmux: {}