edavis10 / emacs-starter-kit forked from technomancy/emacs-starter-kit

All the code you need to get started, with an emphasis on dynamic languages.

This URL has Read+Write access

emacs-starter-kit / puppet-mode-init.el
100644 7 lines (5 sloc) 0.181 kb
1
2
3
4
5
6
7
;;
;; Setup puppet-mode for autoloading
;;
(autoload 'puppet-mode "puppet-mode" "Major mode for editing puppet manifests")
 
(add-to-list 'auto-mode-alist '("\\.pp$" . puppet-mode))