如何在 tmux 中正确配置插件?

如何在 tmux 中正确配置插件?

所有插件安装示例都使用配置文件,~/.tmux.conf就好像它存在一样。我在任何地方都没有这个文件,手动创建它并添加插件的尝试被简单地忽略。

该文件位于哪里?

为什么尝试安装插件管理器被简单地忽略了。

我正在克隆一个存储库。

git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm

~/.tmux.conf用手创建一个文件并将以下内容插入其中。

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'


# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

我指定文件的路径并重新启动 tmux。什么也没发生,我尝试添加不同的插件没事了。

tmux source ~/.tmux.conf

我的最终配置文件:

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'

set -g @plugin 'dracula/tmux'    

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

答案1

TMP 不会自动启动。你按了吗

<prefix>-I 

使用默认设置是

ctrl-b + 'I'

相关内容