Skip to content

Commit da1bf0a

Browse files
committed
elixir module
1 parent 63a63b2 commit da1bf0a

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ By default most of the modules that ship with Prelude are not loaded. For more i
179179
(require 'prelude-emacs-lisp)
180180
(require 'prelude-erc)
181181
;; (require 'prelude-erlang)
182+
;; (require 'prelude-elixir)
182183
;; (require 'prelude-haskell)
183184
(require 'prelude-js)
184185
;; (require 'prelude-latex)

Diff for: modules/doc/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ following links.
1313
- Emacs-Lisp
1414
- ERC
1515
- Erlang
16+
- Elixir
1617
- Haskell
1718
- JS
1819
- Latex

Diff for: modules/prelude-elixir.el

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
;;; prelude-elixir.el --- Emacs Prelude: Elixir programming support.
2+
;;
3+
;; Copyright © 2014 Samuel Tonini
4+
;;
5+
;; Author: Samuel Tonini <[email protected]>
6+
;; Version: 1.0.0
7+
;; Keywords: convenience elixir
8+
9+
;; This file is not part of GNU Emacs.
10+
11+
;;; Commentary:
12+
13+
;; Some basic configuration for Elixir development.
14+
15+
;;; License:
16+
17+
;; This program is free software; you can redistribute it and/or
18+
;; modify it under the terms of the GNU General Public License
19+
;; as published by the Free Software Foundation; either version 3
20+
;; of the License, or (at your option) any later version.
21+
;;
22+
;; This program is distributed in the hope that it will be useful,
23+
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24+
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25+
;; GNU General Public License for more details.
26+
;;
27+
;; You should have received a copy of the GNU General Public License
28+
;; along with GNU Emacs; see the file COPYING. If not, write to the
29+
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
30+
;; Boston, MA 02110-1301, USA.
31+
32+
;;; Code:
33+
34+
(require 'prelude-programming)
35+
36+
(prelude-require-packages '(elixir-mode alchemist))
37+
38+
(provide 'prelude-elixir)
39+
40+
;;; prelude-elixir.el ends here

Diff for: sample/prelude-modules.el

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
;; (require 'prelude-css)
1919
(require 'prelude-emacs-lisp)
2020
;; (require 'prelude-erlang)
21+
;; (require 'prelude-elixir)
2122
;; (require 'prelude-go)
2223
;; (require 'prelude-haskell)
2324
(require 'prelude-js)

0 commit comments

Comments
 (0)