Spaceline for Emacs

I’m trying Spaceline in Emacs.

This is the package that provides Spacemacs with its famous mode-line theme. It has been extracted as an independent package for general fun and profit.

I’d been using a super minimal mode line and was finding it a bit too minimal. Rather than just add things to my config, I let Spaceline do it for me. Looks like this:

The relevant config looks like this…

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
(use-package spaceline
  :ensure t)

(use-package spaceline-config
  :ensure spaceline
  :config
  (spaceline-helm-mode 1)
  (spaceline-emacs-theme)
  (spaceline-toggle-org-clock-on)
  (spaceline-toggle-minor-modes-off)
  (spaceline-toggle-version-control-off))