You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to configure the spaceline-all-hte-icons with Spacemacs, it seems that no matter how I change the segments options, it's still the same, is there any tutorial on configuring spaceline-all-the-icons with Spacemacs?
But I rewrite something in package.el in the directory ~/.emacs.d/private/my-spaceline, here is my packages.el file:
(defconst my-spaceline-packages
'(all-the-icons
spaceline
spaceline-all-the-icons
bookmark
winum
eyebrowse
projectile
multiple-cursors
git-gutter
flycheck
which-function
yahoo-weather
fancy-battery
nyan-mode)
Is this because i didn't initialize the packages that provide the service?
For example, when I try to toggle the batter status on like in the above configuration, it doesn't change anything, I didn't see any batter status on the mode line. I saw some warning while the Emacs is loading all the packages at the start, the warning says
The warning information is in the image I attached.
Did you open an issue on spacemacs repo ? I think this is better to start from there instead.
Use the key binding SPC h I from spacemacs to open a new issue.
Hi,
I am trying to configure the spaceline-all-hte-icons with Spacemacs, it seems that no matter how I change the segments options, it's still the same, is there any tutorial on configuring spaceline-all-the-icons with Spacemacs?
The method I use:
I first create a layer using the method here https://github.com/TheBB/spaceline
But I rewrite something in package.el in the directory ~/.emacs.d/private/my-spaceline, here is my packages.el file:
(defconst my-spaceline-packages
'(all-the-icons
spaceline
spaceline-all-the-icons
bookmark
winum
eyebrowse
projectile
multiple-cursors
git-gutter
flycheck
which-function
yahoo-weather
fancy-battery
nyan-mode)
(defun my-spaceline/init-all-the-icons ()
(use-package all-the-icons
:config (setq neo-theme 'icons)))
(defun my-spaceline/init-spaceline ()
(use-package spaceline))
(defun my-spaceline/init-spaceline-all-the-icons ()
(use-package spaceline-all-the-icons
:after spaceline
:config (progn
(spaceline-all-the-icons-theme)
(spaceline-all-the-icons--setup-anzu)
(spaceline-all-the-icons--setup-package-updates)
(spaceline-all-the-icons--setup-paradox)
(spaceline-all-the-icons--setup-neotree)
(spaceline-toggle-all-the-icons-battery-status-on)
)))
Any ideas?
The text was updated successfully, but these errors were encountered: