summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-ui.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs.d/custom/fcuny-ui.el20
1 files changed, 12 insertions, 8 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el
index 6d301c4..df4e85f 100644
--- a/emacs.d/custom/fcuny-ui.el
+++ b/emacs.d/custom/fcuny-ui.el
@@ -29,21 +29,25 @@
 (use-package uniquify
   :defer 5
   :config
-  (setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers
+  ;; don't muck with special buffers
+  (setq uniquify-ignore-buffers-re "^\\*")
   (setq uniquify-buffer-name-style 'forward)
   (setq uniquify-separator "/"))
 
 (use-package hydra
   :ensure t)
 
-(use-package smart-mode-line
+(use-package spacemacs-theme
+  :defer t
+  :init (load-theme 'spacemacs-light t))
+
+(use-package spaceline
   :ensure t
+  :init
+  (require 'spaceline-config)
   :config
-  ;; See https://github.com/Malabarba/smart-mode-line/issues/217
-  (setq mode-line-format (delq 'mode-line-position mode-line-format))
-  (setq sml/no-confirm-load-theme t)
-  (sml/setup)
-  (sml/apply-theme 'light)
-  (remove-hook 'display-time-hook 'sml/propertize-time-string))
+  (progn
+    (spaceline-spacemacs-theme)
+    (spaceline-toggle-minor-modes-on)))
 
 (provide 'fcuny-ui)