emacs : add lua-mode

This commit is contained in:
2024-08-28 14:26:12 +09:00
parent 7a2834b617
commit c590f95ce4
2 changed files with 7 additions and 0 deletions

View File

@ -106,6 +106,7 @@ Otherwise the startup will be very slow. "
(require 'init-python) (require 'init-python)
(require 'init-ruby) (require 'init-ruby)
(require 'init-shell) (require 'init-shell)
(require 'init-lua)
(require 'init-latex) (require 'init-latex)
(require 'init-verilog) (require 'init-verilog)

View File

@ -0,0 +1,6 @@
;; init-lua.el --- Initialize ruby configurations. -*- lexical-binding: t -*-
(use-package lua-mode)
(provide 'init-lua)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; init-lua.el ends here