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 (:host github
:repo "drym-org/symex.el"
:files ("symex-core/symex*.el")))
(use-package symex
:after symex-core
:ensure (:host github
:repo "drym-org/symex.el"
:files ("symex/symex*.el"
"symex/doc/*.texi"
"symex/doc/figures"))
: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
:after symex
:ensure (:host github
:repo "drym-org/symex.el"
:files ("symex-ide/symex*.el"))
:config
(symex-ide-mode 1))
(use-package symex-evil
:after (symex evil)
:ensure (:host github
:repo "drym-org/symex.el"
:files ("symex-evil/symex*.el"))
: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))