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

11 lines
286 B
EmacsLisp
Raw Normal View History

2017-10-08 20:36:28 +02:00
;;; Lua
2014-03-25 09:23:12 +01:00
2021-03-12 10:29:37 +01:00
(with-no-warnings (defvaralias 'lua-indent-level 'tab-width))
2014-10-24 14:58:38 +02:00
2018-02-15 13:28:49 +01:00
(defun ambrevar/lua-set-compiler ()
(setq compile-command (concat lua-default-application " " (shell-quote-argument buffer-file-name))))
2018-02-15 13:28:49 +01:00
(add-hook 'lua-mode-hook 'ambrevar/lua-set-compiler)
2014-03-25 09:23:12 +01:00
(provide 'init-lua)