spacemacs/.spacemacs.template
syl20bnr 156d16c2ef ~/.spacemacs version is now a string
Sorry you'll have to update your file one more time
Just change 1 to be "1"
2014-10-24 19:33:46 -04:00

41 lines
1.2 KiB
Plaintext

;; -*- 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.")
(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."
)
(defvar dotspacemacs-excluded-packages '()
"A list of packages and/or extensions that will not be install and loaded.")
;; Functions
(defun dotspacemacs/init ()
"User initialization for Spacemacs. This function is called at the very
startup."
)
(defun dotspacemacs/config ()
"This is were you can ultimately override default Spacemacs configuration.
This function is called at the very end of Spacemacs initialization."
)