Skip to content

Instantly share code, notes, and snippets.

@meditans
Created April 28, 2015 14:33
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save meditans/8a44380e0b414bd9484b to your computer and use it in GitHub Desktop.
Save meditans/8a44380e0b414bd9484b to your computer and use it in GitHub Desktop.
;;; packages.el --- cdlatex 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
(defvar cdlatex-packages '(cdlatex)
"List of all packages to install and/or initialize. Built-in packages
which require an initialization must be listed explicitly in the list.")
(defvar cdlatex-excluded-packages '()
"List of packages to exclude.")
;; For each package, define a function cdlatex/init-<package-cdlatex>
(defun cdlatex/init-cdlatex () (use-package cdlatex))
;; 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