How can I get nvim to report the path of the file I have open to the window manager?
I would like the path to show in my statusbar. Not just the name of the file.
Set 'titlestring'
to something appropriate containing %F
.
1 Like
Wow. Such a simple thing. All I had to do was set title = true
and titlestring = '%F'
cleans it up. Thank you so much.