so the problem I am having is that my spaceline plugin will have little squares of miss color until I do powerline-reset. (Just like the github issue.) Problem is that I am having to do this every time I start up emacs. Is there a way to make it so I don't have to do this every time I start up emacs?
Here is the issue on github: https://github.com/TheBB/spaceline/issues/11
(use-package spaceline
:ensure t
:init
(progn
(require 'spaceline-config)
(setq powerline-default-separator 'wave)
(setq spaceline-workspace-numbers-unicode t)
(setq spaceline-separator-dir-left '(left . left))
(setq spaceline-separator-dir-right '(right . right))
(setq powerline-height 20)
(setq spaceline-highlight-face-func 'spaceline-highlight-face-evil-state)
(spaceline-toggle-major-mode-on)
(spaceline-toggle-minor-modes-off)
(spaceline-toggle-battery-on)
(spaceline-toggle-hud-off)
(spaceline-spacemacs-theme)))