wok view emacs-pkg-lua-mode/stuff/lua-mode-start.el @ rev 3938

emacs: up to 23.1
author Dominique Corbex <domcox@users.sourceforge.net>
date Fri Aug 21 21:49:57 2009 +0200 (2009-08-21)
parents
children
line source
1 ;; lua-mode start file for SliTaz
2 ;;
3 ;; (C) GNU gpl v3 - SliTaz GNU/Linux 2009.
4 ;;
5 ;; To set up Emacs to automatically edit files ending in .lua using Lua-mode
7 (setq auto-mode-alist (cons '("\\.lua$" . lua-mode) auto-mode-alist))
8 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
10 ;; If you want colorization, turn on global-font-lock or add this:
12 (add-hook 'lua-mode-hook 'turn-on-font-lock)
14 ;; If you want to use hideshow, turn on hs-minor-mode or add this:
16 (add-hook 'lua-mode-hook 'hs-minor-mode)