spacemacs/layers/+spacemacs/spacemacs-ui-visual/config.el
Riccardo Murri a26503dc8d Allow customization of spaceline additional segments.
Introduce a new customization variable
`spacemacs-spaceline-additional-segments', which is a list of the
additional segments that should be inserted in the modeline when it is
initialized.
2016-08-21 17:01:23 +02:00

23 lines
656 B
EmacsLisp

;;; config.el --- Spacemacs UI Visual Layer configuration File
;;
;; Copyright (c) 2016 Sylvain Benner & Contributors
;;
;; Author: Riccardo Murri <riccardo.murri@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defcustom spacemacs-spaceline-additional-segments
'((new-version :when active))
"Additional segments for the Spacemacs modeline.
They are inserted in the modeline between `global' and
`buffer-position'.
Must be a list of valid segments; see `spaceline-install' for
more information on what constitutes a valid segment."
:type '(repeat sexp)
:group 'spacemacs)