I'm not sure whether to place the custom-set-variables call before or after initializing Evil. Some customizations only work before Evil initialization, some after.<br><br>For example, <br> (custom-set-variables<br>
'(evil-overriding-maps nil))<br>doesn't work correctly if after Evil init.<br><br> (custom-set-variables<br> '(evil-search-module (quote evil-search)))<br>doesn't work correctly if before evil init.<br>
<br>Which way is it supposed to be? If I leave them separated, Emacs consolidates them into one again when I use its customization interface.<br><br>