Blame SOURCES/protobuf-init.el

282019
; Protobuf major mode, init file by Tim Niemueller [www.niemueller.de], BSD
282019
; Add mode to automatically recognized modes
282019
(setq auto-mode-alist (cons '("\\.proto$" . protobuf-mode) auto-mode-alist))
282019
(autoload 'protobuf-mode "protobuf-mode" "Google protobuf editing mode." t)
282019
; Turn on colorization by default
282019
(add-hook 'protobuf-mode-hook 'turn-on-font-lock)