-
-
Save psifertex/bb1b35c804ebf87ee294 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; extensions.el --- minimap Layer extensions File for Spacemacs | |
;; | |
;; Copyright (c) 2012-2014 Sylvain Benner | |
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors | |
;; | |
;; Author: Sylvain Benner <[email protected]> | |
;; URL: https://github.com/syl20bnr/spacemacs | |
;; | |
;; This file is not part of GNU Emacs. | |
;; | |
;;; License: GPLv3 | |
(defvar minimap-pre-extensions | |
'( | |
;; pre extension minimaps go here | |
) | |
"List of all extensions to load before the packages.") | |
(defvar minimap-post-extensions | |
'( | |
;; post extension minimaps go here | |
) | |
"List of all extensions to load after the packages.") | |
;; For each extension, define a function minimap/init-<extension-minimap> | |
;; | |
;; (defun minimap/init-my-extension () | |
;; "Initialize my extension" | |
;; ) | |
;; | |
;; 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