aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-10-16 11:29:26 -0500
committerJesús <heckyel@hyperbola.info>2021-10-16 11:29:26 -0500
commitfeb71536a724423eec7ec250881ef57d681ef97b (patch)
treeda22c2044a91a40b29820dbae4434ace70d64978 /modules
parent5c590da187d67db5c4080145d93388cbb40508c3 (diff)
downloademacs-personal-feb71536a724423eec7ec250881ef57d681ef97b.tar.lz
emacs-personal-feb71536a724423eec7ec250881ef57d681ef97b.tar.xz
emacs-personal-feb71536a724423eec7ec250881ef57d681ef97b.zip
Add lua language
Diffstat (limited to 'modules')
-rw-r--r--modules/init-lua.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/init-lua.el b/modules/init-lua.el
new file mode 100644
index 0000000..2497e5c
--- /dev/null
+++ b/modules/init-lua.el
@@ -0,0 +1,11 @@
+;;; init-lua.el --- .Emacs Configuration -*- lexical-binding: t -*-
+;;; Commentary:
+;;
+
+;;; Code:
+;; lua-mode
+(use-package lua-mode
+ :mode ("\\.lual\\'" . lua-mode))
+
+(provide 'init-lua)
+;;; init-lua.el ends here