I know CTRLg displays the current file you\'re working on. Is there a way to modify my .vimrc such that the filename/path is always displa
.vimrc
If you want the path to include resolved symlinks, use the following:
set statusline +=%{resolve(expand('%:p'))}\ %*
To keep the '~' abbreviation for your home directory, include fnamemodify
fnamemodify
set statusline +=%{fnamemodify(resolve(expand('%:p')),':~')}\ %*