From: Amin Bandali Date: Thu, 6 Jun 2019 04:53:16 +0000 (-0400) Subject: emacs: mode-line-related tweaks X-Git-Url: https://git.shemshak.org/~bandali/configs/commitdiff_plain/26906e22b470f44d27a9d1075499abe241207c44?ds=sidebyside;pf=~bandali emacs: mode-line-related tweaks --- 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))