spacemacs/.spacemacs.template

41 lines
1.2 KiB
Plaintext
Raw Normal View History

;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in the home directory.
;; Variables
(defconst dotspacemacs-version "1.01"
"The version of this file.")
2014-10-24 03:11:36 +00:00
(defvar dotspacemacs-configuration-layer-path '()
"List of additional paths where to look for configuration layers.
Paths must have a trailing slash (ie. `~/.mycontribs/')"
)
(defvar dotspacemacs-configuration-layers '()
"List of contribution to load."
)
(defvar dotspacemacs-fullscreen-at-startup t
"If non nil the frame is maximized when Emacs starts up.")
(defvar dotspacemacs-default-package-repository 'melpa-stable
"The default package repository used if no explicit repository has been
specified with an installed package."
)
2014-09-05 03:43:01 +00:00
(defvar dotspacemacs-excluded-packages '()
"A list of packages and/or extensions that will not be install and loaded.")
2014-09-05 03:43:01 +00:00
;; Functions
(defun dotspacemacs/init ()
2014-10-04 04:24:30 +00:00
"User initialization for Spacemacs. This function is called at the very
startup."
)
(defun dotspacemacs/config ()
2014-09-05 03:43:01 +00:00
"This is were you can ultimately override default Spacemacs configuration.
This function is called at the very end of Spacemacs initialization."
)