summary refs log tree commit diff
path: root/config/init-protobuf.el
blob: 1af464bafa5a5c294a1e8b122c5f0813480b846e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; init-protobuf.el --- configure protocol buffer -*- lexical-binding: t -*-
;; Author: Franck Cuny <franck@fcuny.net>

;;; Commentary:

;; configure protobuf

;;; Code:

(use-package protobuf-mode
  :ensure t
  :mode "\\.proto\\'")

(provide 'init-protobuf.el)

;;; init-protobuf.el ends here