No description
  • Emacs Lisp 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-03-30 20:36:23 -04:00
LICENSE Initial commit 2025-10-29 11:04:02 -04:00
mix.el Allow passing task as argument to mix-execute-task 2026-03-30 20:36:23 -04:00
README.md Do not assume users want to use Mix to find projects; make it opt-in 2026-03-18 16:25:52 -04:00

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)