From 9d549c69b877090e54e87ebea548a1d97c58a9f3 Mon Sep 17 00:00:00 2001 From: Peng Li Date: Sat, 13 Aug 2016 00:09:24 +0800 Subject: [PATCH] emacs - lua support --- emacs.d/config.org | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/emacs.d/config.org b/emacs.d/config.org index 672d086..d3a2a04 100644 --- a/emacs.d/config.org +++ b/emacs.d/config.org @@ -673,6 +673,7 @@ Always indents header, and hide header leading starts so that no need type =#+ST (latex . t) (java . t) (ruby . t) + (lua . t) (lisp . t) (scheme . t) (sh . t) @@ -693,6 +694,10 @@ Always indents header, and hide header leading starts so that no need type =#+ST (unless (file-exists-p org-ditaa-jar-path) (error "seudut: ditaa.jar not found at %s " org-ditaa-jar-path)) + + ;; Lua support + (use-package ob-lua + :ensure t) #+END_SRC ** Org-bullets @@ -1882,6 +1887,12 @@ irony-company (add-hook 'c-mode-hook 'google-set-c-style)) #+END_SRC +** Lua +#+BEGIN_SRC emacs-lisp :tangle yes :results silent + (use-package lua-mode + :ensure t) +#+END_SRC + * Compile Set the environments vairables in compilation mode #+BEGIN_SRC emacs-lisp :tangle yes :results silent -- 2.11.0