How to hide the insert status in vim

vim

I want to hide

-- INSERT --

from the status line.

Best Answer

In the command line mode type below line and press Enter

:set noshowmode

And if you want to make it permanent then write that line (set noshowmode) without colon inside .vimrc file inside your home directory

Related Question