I have the following code in my init.el file:
(use-package org-plus-contrib
:ensure t
:config (progn (require 'ox-extra)
(ox-extras-activate '(ignore-headlines))))
The :ensure t
supposedly installs the package if it is not already installed. Without it, I would get a warning message telling me the package cannot be loaded.
However, even with :ensure t
I still get the warning: Error (use-package): Cannot load org-plus-contrib
.
This also occurs with other packages (spacemacs-theme
, matlab-mode
).
But it does properly work for many other packages (org, all-the-icons,doom-themes,neotree, exec-path-from-shell).
Question: Why is this happening and how I can fix it?
Thanks for the help! :D