spacemacs/layers/+lang/protobuf/packages.el
2017-04-09 12:55:02 -04:00

37 lines
1.2 KiB
EmacsLisp

;;; packages.el --- Protocol Buffers Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Amol Mandhane <https://github.com/amol-mandhane>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq protobuf-packages
'(
protobuf-mode
flycheck-protobuf
))
(defun protobuf/init-protobuf-mode ()
(use-package protobuf-mode
:init (progn
(defun spacemacs//setup-protobuf-imenu ()
"Setup imenu regex for protocol buffers."
(setq imenu-generic-expression '((nil "^[[:space:]]*\\(message\\|service\\|enum\\)[[:space:]]+\\([[:alnum:]]+\\)"
2))))
(add-hook 'protobuf-mode-hook 'spacemacs//setup-protobuf-imenu))))
(defun protobuf/init-flycheck-protobuf ()
(use-package flycheck-protobuf))
(when (configuration-layer/package-usedp 'flycheck)
(defun protobuf/post-init-flycheck-protobuf ()
(with-eval-after-load 'flycheck-protobuf
(require 'flycheck)
(require 'flycheck-protobuf)
(add-to-list 'flycheck-checkers 'protobuf-protoc-reporter
t))))