summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2019-06-06 00:53:16 -0400
committerAmin Bandali <bandali@gnu.org>2019-06-06 00:53:16 -0400
commit26906e22b470f44d27a9d1075499abe241207c44 (patch)
tree3fff403f89b2e88808598d7ee98f27e049221d6e /.emacs.d
parentfc995e3d5a91d3d1938563ef794369974b8e5fb5 (diff)
downloadconfigs-26906e22b470f44d27a9d1075499abe241207c44.tar.gz
configs-26906e22b470f44d27a9d1075499abe241207c44.tar.xz
configs-26906e22b470f44d27a9d1075499abe241207c44.zip
emacs: mode-line-related tweaks
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el15
1 files changed, 14 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index b05904f..21eecd6 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -1222,7 +1222,8 @@ For disabling the behaviour for certain buffers and/or modes."
:commands (sml/apply-theme)
:demand
:config
- (sml/setup))
+ (sml/setup)
+ (smart-mode-line-enable))
(use-package doom-themes)
@@ -1336,10 +1337,22 @@ For disabling the behaviour for certain buffers and/or modes."
("<end>" . mwim-end-of-line-or-code)))
(use-package projectile
+ :defer 0.5
:bind-keymap ("C-c P" . projectile-command-map)
:config
(projectile-mode)
+ (defun a/projectile-mode-line-fun ()
+ "Report project name and type in the modeline."
+ (let ((project-name (projectile-project-name))
+ (project-type (projectile-project-type)))
+ (format "%s%s"
+ projectile-mode-line-prefix
+ (if project-type
+ (format ":%s" project-type)
+ ""))))
+ (setq projectile-mode-line-function 'a/projectile-mode-line-fun)
+
(defun my-projectile-invalidate-cache (&rest _args)
;; ignore the args to `magit-checkout'
(projectile-invalidate-cache nil))