Skip to content

Commit

Permalink
Added lua mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Dec 2, 2014
1 parent 94e6e8a commit 83f05f5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion init.el
@@ -1,7 +1,7 @@
(setq my-packages
'(use-package evil evil-leader evil-jumper deft markdown-mode
magit full-ack yasnippet js2-mode phi-rectangle haskell-mode
ghc solarized-theme helm cmake-mode))
ghc solarized-theme helm cmake-mode lua-mode))

(when (>= emacs-major-version 24)
(require 'package)
Expand Down Expand Up @@ -224,6 +224,9 @@
(use-package cmake-mode)
(add-to-list 'auto-mode-alist '("CMakeLists\\.txt$" . cmake-mode))

(use-package lua-mode)
(add-to-list 'auto-mode-alist '("\\.lua$" . lua-mode))

;;; Rust
;; (add-to-list 'load-path "~/.emacs.d/rust")
;; (use-package rust-mode)
Expand Down

0 comments on commit 83f05f5

Please sign in to comment.