LoginSignup
21
20

More than 5 years have passed since last update.

Vim 起動中は tmux のステータスラインを隠す

Posted at

tmux のステータスラインは格好良くて便利ですが,エディタを開いているときは縦幅をフルに活用したいので,Vim が開いているときは tmux のステータスラインを隠す設定をしました.
.vimrc に下のように設定します.

.vimrc
if !has('gui_running') && $TMUX !=# ''
    augroup Tmux
        autocmd!
        autocmd VimEnter,VimLeave * silent !tmux set status
    augroup END
endif

tmux set status で tmux のステータスラインの表示/非表示をトグルすることができるので,Vim の起動時と終了時に実行するようにしています.

21
20
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
20