Created
March 13, 2016 21:12
-
-
Save jorgenschaefer/140201eee197349e5f13 to your computer and use it in GitHub Desktop.
best mode line
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(setq-default mode-line-format | |
`("" | |
" %b" | |
(:eval | |
(if (and buffer-file-name | |
(buffer-modified-p)) | |
"*" | |
" ")) | |
" %l" | |
(column-number-mode | |
",%c") | |
" " | |
(vc-mode | |
("" vc-mode " ")) | |
(pyvenv-virtual-env-name | |
("venv:" pyvenv-virtual-env-name " ")) | |
(projectile-mode | |
(:eval (format "prj:%s " (projectile-project-name)))) | |
(which-func-mode | |
("" which-func-format " ")) | |
tracking-mode-line-buffers | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment