ambevar-dotfiles/.emacs.d/lisp/mode-lua.el

11 lines
225 B
EmacsLisp
Raw Normal View History

2014-03-25 09:23:12 +01:00
;; Lua
2014-10-24 14:58:38 +02:00
(defvaralias 'lua-indent-level 'tab-width)
2014-03-25 09:23:12 +01:00
(add-hook-and-eval
'lua-mode-hook
(lambda ()
(setq compile-command (concat lua-default-application " " (shell-quote-argument buffer-file-name)))))
2014-03-25 09:23:12 +01:00
(provide 'mode-lua)