emacs中的语法高亮,应该是默认启用的 我有些.tpl的文件,实际上是些html模板文件,需要html的语法高亮,这就要一些配置。

在~/.emacs中加几行,声明这几种文件的类型即可

;HTML
(autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t) 
(setq auto-mode-alist (cons '("\\\\.html$" . html-helper-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\\\.htm$" . html-helper-mode) auto-mode-alist)) 
(setq auto-mode-alist (cons '("\\\\.tpl$" . html-helper-mode) auto-mode-alist))