-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shadowing is now control by layer property ':can-shadow' only. can-shadow is a commutative relation, if layer1 can shadow layer2 then layer2 can shadow layer1. the shadow operator is a binary operator accepting two layer names, it is not commutative and the order of the operands is determined by the order of the layers in the dotfile (like the ownership stealing mechanism). If ':can-shadow' is set explicity to nil in the dotfile then the layer won't shadow any layer. For instance to install both ivy and helm layer: (setq dotspacemacs-configuration-layers '( ivy (helm :can-shadow nil) ) note that due to the commutative relation the above example can also be written (in this case, ':can-shadow' should be read ':can-be-shawdowed'): (setq dotspacemacs-configuration-layers '( (ivy :can-shadow nil) helm )
- Loading branch information
Showing
4 changed files
with
177 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.