23 lines
621 B
EmacsLisp
23 lines
621 B
EmacsLisp
;;; packages.el --- Protocol Buffers Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2017 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
|
|
|
|
(defconst protobuf-packages
|
|
'(
|
|
flycheck
|
|
protobuf-mode
|
|
))
|
|
|
|
(defun protobuf/post-init-flycheck ()
|
|
(spacemacs/enable-flycheck 'protobuf-mode))
|
|
|
|
(defun protobuf/init-protobuf-mode ()
|
|
(use-package protobuf-mode
|
|
:init (add-hook 'protobuf-mode-hook 'spacemacs//setup-protobuf-imenu)))
|