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'

おすすめ記事