Cmake syntax highlighting for aquamacs

카테고리 없음 2011. 8. 4. 15:01
It's from http://kuniganotas.wordpress.com/2011/06/06/cmake-syntax-highlighting-for-aquamacs/
; Add cmake listfile names to the mode list.
(setq auto-mode-alist
	  (append
	   '(("CMakeLists\\.txt\\'" . cmake-mode))
	   '(("\\.cmake\\'" . cmake-mode))
	   auto-mode-alist))
(autoload 'cmake-mode "~/CMake/Docs/cmake-mode.el" t)

: