Added elixir lang support
This commit is contained in:
parent
af286043a4
commit
f80a2d6707
4 changed files with 20 additions and 0 deletions
|
@ -72,6 +72,7 @@
|
|||
crystal ; ruby at the speed of c
|
||||
csharp ; unity, .NET, and mono shenanigans
|
||||
data ; config/data formats
|
||||
elixir ; erlang done right
|
||||
elm ; care for a cup of TEA?
|
||||
emacs-lisp ; drown in parentheses
|
||||
go ; the hipster dialect
|
||||
|
|
2
modules/lang/elixir/autoload/elixir.el
Normal file
2
modules/lang/elixir/autoload/elixir.el
Normal file
|
@ -0,0 +1,2 @@
|
|||
;;; lang/elixir/autoload/elixir.el
|
||||
|
10
modules/lang/elixir/config.el
Normal file
10
modules/lang/elixir/config.el
Normal file
|
@ -0,0 +1,10 @@
|
|||
;;; lang/elixir/config.el
|
||||
|
||||
(def-package! elixir-mode
|
||||
:mode ("\\.ex$")
|
||||
:init
|
||||
(add-hook 'elixir-mode-hook #'turn-off-smartparens-mode)
|
||||
(add-hook 'elixir-mode-hook #'alchemist)
|
||||
:config
|
||||
(set! :company-backend 'elixir-mode '(alchemist-company company-yasnippet)))
|
||||
|
7
modules/lang/elixir/packages.el
Normal file
7
modules/lang/elixir/packages.el
Normal file
|
@ -0,0 +1,7 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/elixir/packages.el
|
||||
|
||||
;; +elixir.el
|
||||
(package! elixir-mode)
|
||||
(package! alchemist)
|
||||
(package! ac-alchemist)
|
Loading…
Add table
Add a link
Reference in a new issue