summaryrefslogtreecommitdiff
path: root/cmake-init.el
blob: a5e0e2ef928184dc7ee311bf11f77e34e3d89e86 (plain)
1
2
3
4
5
6
7
8
9
;;
;; Setup cmake-mode for autoloading
;;
(autoload 'cmake-mode "cmake-mode" "Major mode for editing CMake listfiles." t)
(setq auto-mode-alist
          (append
           '(("CMakeLists\\.txt\\'" . cmake-mode))
           '(("\\.cmake\\'" . cmake-mode))
           auto-mode-alist))