20
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

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

20
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 の起動時と終了時に実行するようにしています.

20
19
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
20
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?