An Emacs client to interface with:
- Claude
- Groq
- Ollama
In ~/.doom.d/package.el
(package! elm
:recipe (:fetcher github :repo "hhamud/elm" :files "elm.el"))
In ~/.doom.d/config.el
(use-package! elm)
First git clone the package
git clone https://github.com/hhamud/elm.git
In ~/.emacs.d/init.el
or ~/.emacs
;; Add the package to load path
(add-to-list 'load-path "~/path/to/package")
;; Require the package
(require 'elm)
;;set the auth source file location if set differently
(setq elm-env-file "/path/to/your/custom/env/file.gpg")