6220ace290
See updated DOCUMENTATION.org and FAQ.org for more info. * add core-env.el * add library load-env-vars.el * add bootstrap package dotenv-mode.el * remove spacemacs-environment from bootstrap layer * remove dotspacemacs variable dotspacemacs-import-env-vars-from-shell * remove dotspacemacs variable dotspacemacs-improt-env-vars-shell-file-name * add new key binding SPC f e e to open spacemacs.env file * add new key binding SPC f e E to reload environment variable from env file * add new key binding SPC f e C-e to re-initialize the env file from shell.
19 lines
604 B
EmacsLisp
19 lines
604 B
EmacsLisp
;;; packages.el --- Tempalte Layer config File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2018 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 templates-private-directory
|
|
(concat spacemacs-private-directory "templates")
|
|
"Configurable private templates directory.")
|
|
|
|
(defvar templates-use-default-templates t
|
|
"If true, do not remove the default settings for
|
|
`auto-insert-mode'. If `nil', ONLY the ones specified by template
|
|
files will be used.")
|