domtronn / spaceline-all-the-icons.el

A Spaceline Mode Line theme using All The Icons for Emacs
MIT License
235 stars 25 forks source link

Missing info and unable to customize spaceline #62

Closed clearmisp closed 6 years ago

clearmisp commented 6 years ago

I have installed spaceline, all-the-icons and spaceline-all-the-icons and configured it:

emacs

As can be seen in the image the icons themselves seem to work but there are a lot of info missing in the mode line; version control, encoding etc. In the configuration I have specified to use "arrow" as separator but it's clearly not arrow that is used. Have I configured the packages incorrectly?

Regards, Micke.

clearmisp commented 6 years ago

I got it to work with the following config:

`(use-package all-the-icons :ensure t)

(use-package spaceline :ensure t)

(use-package spaceline-config :ensure spaceline :config (spaceline-helm-mode 1) (spaceline-emacs-theme))

(use-package spaceline-all-the-icons :ensure t :after spaceline :config (spaceline-all-the-icons-theme) (spaceline-all-the-icons--setup-package-updates) (spaceline-all-the-icons--setup-git-ahead) (setq-default spaceline-all-the-icons-separator-type 'arrow)) ` I also had to re-enable Emacs VC support which I had disabled.