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
|
|
|
|
;; Package-Requires: ((emacs "24"))
|
2019-01-13 20:33:17 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; My preferences for working with Elixir / Erlang projects
|
|
|
|
|
|
|
|
;;; Code:
|
2020-09-02 15:49:10 +02:00
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(require 'macros)
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Configuration
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2019-01-13 20:33:17 +01:00
|
|
|
(use-package elixir-mode
|
|
|
|
:config
|
2020-09-02 15:49:10 +02:00
|
|
|
(macros-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
|