From 28bfa43d7d46526d9d1d1115f8ee750eace2ede2 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Fri, 3 Aug 2018 07:58:26 +0200 Subject: [PATCH] Emacs: Spaceline as modeline --- emacs/emacs.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index 8e7525a..3a3c41f 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1354,3 +1354,17 @@ signature-file is the path to the file which contains the signature." ;; rust-mode (use-package rust-mode) + +;; all-the-icons +;; A utility package to collect various Icon Fonts and propertized them within Emacs +(use-package all-the-icons) + +;; spaceline +;; Powerline theme from Spacemacs +(use-package spaceline) + +;; spaceline-all-the-icons +;; A Spaceline Mode Line theme using All The Icons +(use-package spaceline-all-the-icons + :after spaceline + :config (spaceline-all-the-icons-theme))