diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:56:12 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-11-15 07:56:12 -0800 |
commit | 3378836c941ada7b1a45ae6743e7b38088140dd9 (patch) | |
tree | 9363a918a8281fd09e6a75f40a656d4f8972af23 | |
parent | [emacs] enable `helm-projectile`. (diff) | |
download | emacs.d-3378836c941ada7b1a45ae6743e7b38088140dd9.tar.gz |
[emacs] Add function's name to mode-line.
-rw-r--r-- | emacs.d/inits/00_ui.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/inits/00_ui.el b/emacs.d/inits/00_ui.el index 462efcf..22e392f 100644 --- a/emacs.d/inits/00_ui.el +++ b/emacs.d/inits/00_ui.el @@ -23,3 +23,7 @@ :config (progn (eval-after-load "whitespace" '(diminish 'whitespace-mode)))) + +;; display the name of the function +(use-package which-func + :init (which-function-mode 1)) |