summary refs log tree commit diff
path: root/config/init-protobuf.el
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config/init-protobuf.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/config/init-protobuf.el b/config/init-protobuf.el
new file mode 100644
index 0000000..1af464b
--- /dev/null
+++ b/config/init-protobuf.el
@@ -0,0 +1,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