| 1 | ;;; packages.el --- irc Layer packages File for Spacemacs |
| 2 | ;; |
| 3 | ;; Copyright (c) 2012-2014 Sylvain Benner |
| 4 | ;; Copyright (c) 2014-2015 Sylvain Benner & Contributors |
| 5 | ;; |
| 6 | ;; Author: Sylvain Benner <sylvain.benner@gmail.com> |
| 7 | ;; URL: https://github.com/syl20bnr/spacemacs |
| 8 | ;; |
| 9 | ;; This file is not part of GNU Emacs. |
| 10 | ;; |
| 11 | ;;; License: GPLv3 |
| 12 | |
| 13 | ;; List of all packages to install and/or initialize. Built-in packages |
| 14 | ;; which require an initialization must be listed explicitly in the list. |
| 15 | (setq irc-packages |
| 16 | '( |
| 17 | ;; package names go here |
| 18 | )) |
| 19 | |
| 20 | ;; List of packages to exclude. |
| 21 | (setq irc-excluded-packages '()) |
| 22 | |
| 23 | ;; For each package, define a function irc/init-<package-name> |
| 24 | ;; |
| 25 | ;; (defun irc/init-my-package () |
| 26 | ;; "Initialize my package" |
| 27 | ;; ) |
| 28 | ;; |
| 29 | ;; Often the body of an initialize function uses `use-package' |
| 30 | ;; For more info on `use-package', see readme: |
| 31 | ;; https://github.com/jwiegley/use-package |