36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
;; -*- mode: emacs-lisp -*-
|
|
;; This file is loaded by Spacemacs at startup.
|
|
;; It must be stored in your home directory.
|
|
|
|
;; Variables
|
|
|
|
(setq-default
|
|
;; List of additional paths where to look for configuration layers.
|
|
;; Paths must have a trailing slash (ie. `~/.mycontribs/')
|
|
dotspacemacs-configuration-layer-path '()
|
|
;; List of contribution to load.
|
|
dotspacemacs-configuration-layers '()
|
|
;; If non nil the frame is maximized when Emacs starts up (Emacs 24.4+ only)
|
|
dotspacemacs-fullscreen-at-startup nil
|
|
;; A list of packages and/or extensions that will not be install and loaded.
|
|
dotspacemacs-excluded-packages '()
|
|
;; The default package repository used if no explicit repository has been
|
|
;; specified with an installed package.
|
|
;; Not used for now.
|
|
dotspacemacs-default-package-repository nil
|
|
)
|
|
|
|
;; 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."
|
|
)
|
|
|
|
;; Custom variables
|
|
|