wok view emacs-pkg-lua-mode/stuff/90-lua-mode.el @ rev 5124

gtk+ openvas-scanner pango slitaz-base-files ttf-bitstream-vera xfree86-base-fonts xorg-base-fonts: remove spurrious SELF_INSTALL
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 21 11:50:42 2010 +0100 (2010-03-21)
parents 6aae08641f1e
children 755fb3544005
line source
1 ;; lua-mode start file for SliTaz
2 ;; Last update: 2009-08-22
3 ;;
4 ;; To set up Emacs to automatically edit files ending in .lua using Lua-mode
6 (setq auto-mode-alist (cons '("\\.lua$" . lua-mode) auto-mode-alist))
7 (autoload 'lua-mode "lua-mode" "Lua editing mode." t)
9 ;; If you want colorization, turn on global-font-lock or add this:
11 (add-hook 'lua-mode-hook 'turn-on-font-lock)
13 ;; If you want to use hideshow, turn on hs-minor-mode or add this:
15 (add-hook 'lua-mode-hook 'hs-minor-mode)
17 ;;