I'd like to display the full path instead of just the filename itself.
How can this be done?
So essentially where it says .spacemacs
in the below image (seems this mode-line is called "Spaceline"):
I'd like to display the full path instead of just the filename itself.
How can this be done?
So essentially where it says .spacemacs
in the below image (seems this mode-line is called "Spaceline"):
Add this to your dotspacemacs/user-config
function:
(spaceline-define-segment buffer-id
(if (buffer-file-name)
(abbreviate-file-name (buffer-file-name))
(powerline-buffer-id)))