You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
522 B
EmacsLisp
12 lines
522 B
EmacsLisp
2 years ago
|
(setq-default mode-line-format '("%*"
|
||
|
" "
|
||
|
(:eval (if buffer-file-name
|
||
|
(abbreviate-file-name buffer-file-name)
|
||
|
(buffer-name)))
|
||
|
" "
|
||
|
"(" mode-name ")"
|
||
|
" "
|
||
|
"[" (:eval (abbreviate-file-name default-directory)) "]"))
|
||
|
|
||
|
(provide 'init-mode-line)
|