conao3 / feather.el

Parallel thread modern Emacs package manager
GNU General Public License v3.0
94 stars 2 forks source link

Not starting after installation #2

Closed berhoel closed 4 years ago

berhoel commented 4 years ago

After installing feather from MELPA and setting it up

use-package feather
  :ensure t
  :config
  (feather-mode))

I get an error message regarding a missing variable ppp-minimum-warning-level--feather. I was able to fix it by using:

use-package feather
  :ensure t
  :init
  (setq ppp-minimum-warning-level--feather 1)
  :config
  (feather-mode))
conao3 commented 4 years ago

This issue is related to ppp bug and the bug is resolved at https://github.com/conao3/ppp.el/issues/57.

Please reinstall ppp and retry!

berhoel commented 4 years ago

Worked, thank you.