about summary refs log blame commit diff
path: root/emacs/.emacs.d/wpc/wpc-elixir.el
blob: 9209f81b2c6361da2890ad0e7066df2a48445eae (plain) (tree)
1
2
3
4
5
6
                                                                              
 
                                              


                                                 






                                                           
                                                           


                           
;;; wpc-elixir.el --- Elixir / Erland configuration -*- lexical-binding: t -*-

;; Author: William Carroll <wpcarro@gmail.com>
;; Version: 0.0.1
;; URL: https://git.wpcarro.dev/wpcarro/briefcase
;; Package-Requires: ((emacs "24"))

;;; Commentary:
;; My preferences for working with Elixir / Erlang projects

;;; Code:
(use-package elixir-mode
  :config
  (add-hook-before-save 'elixir-mode-hook #'elixir-format))

(provide 'wpc-elixir)
;;; wpc-elixir.el ends here