Skip to content

Instantly share code, notes, and snippets.

@afeinberg
Created November 27, 2009 08:25
Show Gist options
  • Save afeinberg/243901 to your computer and use it in GitHub Desktop.
Save afeinberg/243901 to your computer and use it in GitHub Desktop.
(require 'protobuf-mode)
(add-to-list 'auto-mode-alist '
("\\.proto" . protobuf-mode))
(defun af-protobuf-mode-hook ()
"Protocol buffers hook."
(interactive "*P")
(setq
tab-width 2
c-basic-offset 2
indent-tabs-mode nil))
(add-hook 'protobuf-mode-hook 'af-protobuf-mode-hook)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment