mirror of
https://github.com/J3RN/mix-mode
synced 2026-08-31 19:10:19 +00:00
No description
- Emacs Lisp 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| LICENSE | ||
| mix.el | ||
| README.md | ||
mix.el
An Emacs package for working with Mix projects.
Installation
Currently, the project is not yet on a package archive, but you can install it via use-package with the :vc option if you are using Emacs version 30 or newer:
(use-package mix
:vc (:url "https://github.com/J3RN/mix.el"
:rev :newest)))
If you use project.el and want to have project.el detect projects by the presence of a mix.exs file, use the following config:
(use-package mix
:vc (:url "https://github.com/J3RN/mix.el"
:rev :newest)))
:config
(add-to-list 'project-find-functions 'mix-project-find-root)