30d7beb277
Create new layers: - spacemacs-navigation: contains packages whose principal goal is navigation - spacemacs-modeline: contains packages about mode line Merge spacemacs-ui and spacemacs-ui-visual into layer spacemacs-visual.
22 lines
663 B
EmacsLisp
22 lines
663 B
EmacsLisp
;;; config.el --- Spacemacs Mode-line 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)
|