;; -*- 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." )