Elpaca instructions for installing each of the packages described in the previous section are below (please only install the ones you want, as described in See Installing Symex):
(use-package symex-core :ensure (:recipe (:host github :repo "drym-org/symex.el" :files ("symex-core/symex*.el")))) (use-package symex :ensure (:recipe (:host github :repo "drym-org/symex.el" :files ("symex/symex*.el" "symex/doc/*.texi" "symex/doc/figures"))) :after (symex-core) :config (symex-mode 1) (global-set-key (kbd "s-;") #'symex-mode-interface)) ; or whatever keybinding you like ;; and any other customizations you like (use-package symex-ide :ensure (:recipe (:host github :repo "drym-org/symex.el" :files ("symex-ide/symex*.el"))) :after (symex) :config (symex-ide-mode 1)) (use-package symex-evil :ensure (:recipe (:host github :repo "drym-org/symex.el" :files ("symex-evil/symex*.el"))) :after (symex evil) :config (symex-evil-mode 1)) (use-package symex-rigpa :ensure (:recipe (:host github :repo "drym-org/symex.el" :files ("symex-rigpa/symex*.el"))) :after (symex rigpa symex-evil) :config (symex-rigpa-mode 1))