init-lua.el 267 B

1234567891011
  1. ;;; Lua
  2. (defvaralias 'lua-indent-level 'tab-width)
  3. (defun ambrevar/lua-set-compiler ()
  4. (setq compile-command (concat lua-default-application " " (shell-quote-argument buffer-file-name))))
  5. (add-hook 'lua-mode-hook 'ambrevar/lua-set-compiler)
  6. (provide 'init-lua)