summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-11-15 07:56:12 -0800
committerFranck Cuny <franckcuny@gmail.com>2015-11-15 07:56:12 -0800
commit3378836c941ada7b1a45ae6743e7b38088140dd9 (patch)
tree9363a918a8281fd09e6a75f40a656d4f8972af23 /emacs.d
parent[emacs] enable `helm-projectile`. (diff)
downloademacs.d-3378836c941ada7b1a45ae6743e7b38088140dd9.tar.gz
[emacs] Add function's name to mode-line.
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/inits/00_ui.el4
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))