Continuously display the file name in vim

Hi All,

In vim, when we press ^G, the file name is displayed at the bottom of the screen and as soon as we enter into some other mode (say e.g. Insert), the file name is replaced by the words "Insert". I was just wondering whether it is possible to continuously show the file name no matter which mode we are in?

Thanks in advance.

set modeline
set ls=2

Add this line into your .vimrc file.
Now you can see the file name in the bottom always.

Add this in your vimrc , you will have the file name in the bottom .

set ls=2

Thanks thillai_selvan and karthigayan.

The solution Rocks!!