Smart Line Mode
Watch the Video Here
;; smart-mode-line
;; URL: https://github.com/phil-s/smart-mode-line
;; Sexy modeline
;; Comes with three default themes: dark, light, respectful
;; Neat customizations, incl. ability to truncate directory names
;; Lets you see important information right away
;; Line, colum number, whether buffer is modified
;; Comes with its own bundled version of `rich-minority' which allows one to hide certain modes in the modeline
(use-package smart-mode-line
:ensure t
:config
(setq sml/theme 'light) ;; Choose 'light' or 'respectful' as alternatives
(sml/setup))
(setq rm-blacklist
(format "^ \\(%s\\)$"
(mapconcat #'identity
'("Fly.*" "Wrap" "Abbrev")
"\\|")))
Return to Home