Skip to content

Instantly share code, notes, and snippets.

@m039
Created February 14, 2017 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m039/37970d2971c5fa1f0ab4db22140475c0 to your computer and use it in GitHub Desktop.
Save m039/37970d2971c5fa1f0ab4db22140475c0 to your computer and use it in GitHub Desktop.
Spacemacs gyp layer
;;; packages.el --- gyp layer packages file for Spacemacs.
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Dmitry Mozgin <m039@Dmitrys-MBP>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;;; Code:
(defconst gyp-packages
'((gyp-mode
:location (recipe
:fetcher git
:url "https://chromium.googlesource.com/external/gyp"
:files ("tools/emacs/*.el")))))
(defun gyp/init-gyp-mode()
(use-package
gyp-mode
:defer t
:init
(autoload 'gyp-mode "gyp" nil t)
:mode "\\.gyp\\'"))
;;; packages.el ends here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment