Skip to content

Instantly share code, notes, and snippets.

@aerosol
Created July 9, 2015 20:56
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 aerosol/83a2a617423c2c0ecb3d to your computer and use it in GitHub Desktop.
Save aerosol/83a2a617423c2c0ecb3d to your computer and use it in GitHub Desktop.
;;; packages.el --- hq1-elm Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; List of all packages to install and/or initialize. Built-in packages
;; which require an initialization must be listed explicitly in the list.
(setq hq1-elm-packages
'(
elm-mode
))
;; List of packages to exclude.
(setq hq1-elm-excluded-packages '())
;; For each package, define a function hq1-elm/init-<package-name>
;;
(defun hq1-elm/init-my-package ()
"Initialize my package"
(require 'elm-mode)
)
;;
;; Often the body of an initialize function uses `use-package'
;; For more info on `use-package', see readme:
;; https://github.com/jwiegley/use-package
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment