diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2018-02-28 08:46:13 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2018-02-28 08:46:13 -0800 |
commit | 5523e6c7d5e71e11657f5531a4a6861436a769da (patch) | |
tree | 50e743e9d55e51f58a43edb7459450fdae56c658 | |
parent | [bash] Configure $EDITOR correctly. (diff) | |
download | emacs.d-5523e6c7d5e71e11657f5531a4a6861436a769da.tar.gz |
[emacs] add support for protobuf
-rw-r--r-- | emacs.d/lib/packages.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/lib/packages.el b/emacs.d/lib/packages.el index 0761f9f..ff0ca3a 100644 --- a/emacs.d/lib/packages.el +++ b/emacs.d/lib/packages.el @@ -348,6 +348,10 @@ projectile-cache-file (expand-file-name "var/projectile.cache" user-emacs-directory)) (add-to-list 'projectile-globally-ignored-files ".DS_Store")) +(use-package protobuf-mode + :ensure t + :mode ("\\.proto$" . protobuf-mode)) + (use-package python ;; configuration for Python :mode(("\\.aurora$" . python-mode) |