diff --git a/dot_spacemacs.tmpl b/dot_spacemacs.tmpl index bbd20f8..0eccae2 100644 --- a/dot_spacemacs.tmpl +++ b/dot_spacemacs.tmpl @@ -83,8 +83,13 @@ This function should only modify configuration layer settings." shell ) - ;; To use a local version of a package, use the `:location' property: - ;; '(your-package :location "~/path/to/your-package/") + ;; List of additional packages that will be installed without being wrapped + ;; in a layer (generally the packages are installed only and should still be + ;; loaded using load/require/use-package in the user-config section below in + ;; this file). If you need some configuration for these packages, then + ;; consider creating a layer. You can also put the configuration in + ;; `dotspacemacs/user-config'. To use a local version of a package, use the + ;; `:location' property: '(your-package :location "~/path/to/your-package/") ;; Also include the dependencies as they will not be resolved automatically. dotspacemacs-additional-packages '( org-mru-clock @@ -179,7 +184,9 @@ It should only modify the values of Spacemacs settings." ;; If non-nil then Spacelpa repository is the primary source to install ;; a locked version of packages. If nil then Spacemacs will install the - ;; latest version of packages from MELPA. (default nil) + ;; latest version of packages from MELPA. Spacelpa is currently in + ;; experimental state please use only for testing purposes. + ;; (default nil) dotspacemacs-use-spacelpa nil ;; If non-nil then verify the signature for downloaded Spacelpa archives. @@ -239,6 +246,14 @@ It should only modify the values of Spacemacs settings." ;; Default major mode of the scratch buffer (default `text-mode') dotspacemacs-scratch-mode 'org-mode + ;; If non-nil, *scratch* buffer will be persistent. Things you write down in + ;; *scratch* buffer will be saved and restored automatically. + dotspacemacs-scratch-buffer-persistent nil + + ;; If non-nil, `kill-buffer' on *scratch* buffer + ;; will bury it instead of killing. + dotspacemacs-scratch-buffer-unkillable nil + ;; Initial message in the scratch buffer, such as "Welcome to Spacemacs!" ;; (default nil) dotspacemacs-initial-scratch-message nil @@ -266,6 +281,7 @@ It should only modify the values of Spacemacs settings." ;; (default t) dotspacemacs-colorize-cursor-according-to-state t + ;; Default font or prioritized list of fonts. dotspacemacs-default-font '("JetBrains Mono" ;; :size 12.0 :height 133 @@ -425,7 +441,7 @@ It should only modify the values of Spacemacs settings." ;; (default nil) dotspacemacs-line-numbers nil - ;; Code folding method. Possible values are `evil' and `origami'. + ;; Code folding method. Possible values are `evil', `origami' and `vimish'. ;; (default 'evil) dotspacemacs-folding-method 'evil