;;; packages.el --- Protocol Buffers Layer packages File for Spacemacs ;; ;; Copyright (c) 2012-2016 Sylvain Benner & Contributors ;; ;; Author: 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))))