From 26906e22b470f44d27a9d1075499abe241207c44 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Thu, 6 Jun 2019 00:53:16 -0400 Subject: [PATCH] emacs: mode-line-related tweaks --- .emacs.d/init.el | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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." ("" . 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)) -- 2.20.1