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'

관련 정보