2019-01-13 20:33:17 +01:00
|
|
|
;;; wpc-elixir.el --- Elixir / Erland configuration -*- lexical-binding: t -*-
|
2020-08-31 15:25:44 +02:00
|
|
|
|
2019-01-13 20:33:17 +01:00
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
2020-08-31 15:25:44 +02:00
|
|
|
;; Version: 0.0.1
|
|
|
|
;; URL: https://git.wpcarro.dev/wpcarro/briefcase
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
2019-01-13 20:33:17 +01:00
|
|
|
|
|
|
|
;;; 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
|