Where should I put .tmux.conf to work with byobu? #82
-
|
I recently started using Byobu and ran into an issue when trying to install a tmux plugin on Byobu-tmux: the plugin was not working. I created ~/.byobu/.tmux.conf and configured TPM to run from ~/.byobu/plugins/tpm/tpm, but it didn’t work. I also tried running it from ~/.tmux, but that didn’t work either. The only way I managed to make it work was by setting my ~/.tmux.conf to be the same as ~/.byobu/.tmux.conf. So, to get Byobu with the tmux backend working properly, should I use ~/.tmux.conf instead of ~/.byobu/.tmux.conf? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The Correct Answer: Use
|
Beta Was this translation helpful? Give feedback.
The Correct Answer: Use
~/.byobu/.tmux.conf✅The correct location for your tmux configuration with Byobu is
~/.byobu/.tmux.conf. This file IS loaded by Byobu — here's why and how to make it work with plugins like TPM:How Byobu Loads Tmux Config
When you run
byobuwith tmux backend, it executes:That profile file sources your configs in this order:
~/.byobu/color.tmux~/.byobu/datetime.tmux~/.byobu/profile.tmux~/.byobu/keybindings.tmux~/.byobu/.tmux.conf← Your custom config goes hereSource: https://github.com/dustinkirkland/byobu/blob/master/usr/share/byobu/profiles/tmuxrc#L30
Why TPM Might Not Work in
~/.byobu/.tmux.confThe issue you're…