43 lines
1.5 KiB
Text
43 lines
1.5 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
|
|
;; If non nil smooth scrolling (native-scrolling) is enabled. Smooth scrolling
|
|
;; overrides the default behavior of Emacs which recenters the point when
|
|
;; it reaches the top or bottom of the screen
|
|
dotspacemacs-smooth-scrolling t
|
|
;; If non nil pressing 'jk' in insert state, ido or helm will activate the
|
|
;; evil leader.
|
|
dotspacemacs-feature-toggle-leader-on-jk 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
|
|
|