about summary refs log blame commit diff
path: root/users/wpcarro/emacs/.emacs.d/wpc/wpc-elixir.el
blob: 69259274c86d71fada22dc9c5b20377bbb20eb0d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                              
 
                                              
                 
                                   




                                                           










                                                                                

                        
                                                                  


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

;; Author: William Carroll <wpcarro@gmail.com>
;; Version: 0.0.1
;; Package-Requires: ((emacs "24"))

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

;;; Code:

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Dependencies
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(require 'macros)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Configuration
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

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

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