-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #5190 - core: Add :packages keyword for layers #5339
Conversation
This implements my proposal in #5190. To restrict layer to only use pkg1 and pkg2 use (layer :packages (pkg1 pkg2)) To load all packages in a layer except pkg1 use (layer :packages (not pkg1)) In the layer object, this translates to the :user-packages slot
This is breaking the help facility for some reason |
Which help facility does it break ? |
I was getting nil packages in ivy-spacemacs-help. You can use it. I just On Tue, Mar 8, 2016 at 11:57 AM Sylvain Benner notifications@github.com
|
Ok no problem, I'll look at it, thank you. |
@syl20bnr , @justbur. I can confirm the presence of nil layers in the |
This implements my proposal in #5190.
To restrict layer to only use pkg1 and pkg2 use
(layer
:packages (pkg1 pkg2))
To load all packages in a layer except pkg1 use
(layer
:packages (not pkg1))