2019-01-13 20:33:17 +01:00
|
|
|
;;; wpc-elixir.el --- Elixir / Erland configuration -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; My preferences for working with Elixir / Erlang projects
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
(use-package elixir-mode
|
|
|
|
:config
|
2019-10-09 13:13:56 +02:00
|
|
|
(add-hook-before-save 'elixir-mode-hook #'elixir-format))
|
2019-01-13 20:33:17 +01:00
|
|
|
|
|
|
|
(provide 'wpc-elixir)
|
|
|
|
;;; wpc-elixir.el ends here
|