[Emacs] Fix powerline separator resizing issues

This commit is contained in:
Ivan Malison 2016-10-18 14:36:43 -07:00
parent 85349867f9
commit 609c72cb03
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -4021,6 +4021,7 @@ Ensure all themes that I use are installed:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package spaceline-config (use-package spaceline-config
:ensure spaceline :ensure spaceline
:commands spaceline-compile
:preface :preface
(progn (progn
(defun spaceline-gh-notifier-disable-default-notifier-modeline (&rest args) (defun spaceline-gh-notifier-disable-default-notifier-modeline (&rest args)
@ -4035,9 +4036,11 @@ Ensure all themes that I use are installed:
(setq powerline-default-separator (random-choice '(butt slant wave))) (setq powerline-default-separator (random-choice '(butt slant wave)))
(setq spaceline-workspace-numbers-unicode t (setq spaceline-workspace-numbers-unicode t
spaceline-window-numbers-unicode t) spaceline-window-numbers-unicode t)
(if (display-graphic-p) (if (display-graphic-p)
(setq-default powerline-default-separator 'wave) (setq-default powerline-default-separator 'wave)
(setq-default powerline-default-separator 'utf-8)) (setq-default powerline-default-separator 'utf-8))
(spaceline-define-segment imalison:muni (spaceline-define-segment imalison:muni
"Display the number of minutes until the next muni train comes" "Display the number of minutes until the next muni train comes"
(format "🚇%s" (imalison:get-cached-muni-time)) (format "🚇%s" (imalison:get-cached-muni-time))
@ -4048,7 +4051,14 @@ Ensure all themes that I use are installed:
(format "✉%s" github-notifier-unread-count) (format "✉%s" github-notifier-unread-count)
:when (> github-notifier-unread-count 0)) :when (> github-notifier-unread-count 0))
(setq powerline-height 25) (advice-add 'pl/separator-height :around
(lambda (function &rest args)
(+ (apply function args) 10)))
;; This needs to be executed after setting the font because the separators
;; need to get regenerated
(advice-add 'imalison:set-font-size :after 'spaceline-compile)
(spaceline-helm-mode) (spaceline-helm-mode)
;; 'spaceline-gh-notifier and 'imalison:muni disabled for now ;; 'spaceline-gh-notifier and 'imalison:muni disabled for now
(spaceline-spacemacs-theme))) (spaceline-spacemacs-theme)))