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

11 lines
226 B
EmacsLisp

;; Lua
(defvaralias 'lua-indent-level 'tab-width)
(add-hook-and-eval
'lua-mode-hook
(lambda ()
(set (make-local-variable 'compile-command) (concat "lua " (shell-quote-argument buffer-file-name)))))
(provide 'mode-lua)