extensions.el (898B)
1 ;;; extensions.el --- jb55 Layer extensions 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 (defvar jb55-pre-extensions 14 '( 15 ;; pre extension jb55s go here 16 ) 17 "List of all extensions to load before the packages.") 18 19 (defvar jb55-post-extensions 20 '( 21 ;; post extension jb55s go here 22 ) 23 "List of all extensions to load after the packages.") 24 25 ;; For each extension, define a function jb55/init-<extension-jb55> 26 ;; 27 ;; (defun jb55/init-my-extension () 28 ;; "Initialize my extension" 29 ;; ) 30 ;; 31 ;; Often the body of an initialize function uses `use-package' 32 ;; For more info on `use-package', see readme: 33 ;; https://github.com/jwiegley/use-package