Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (27 sloc)
1.16 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; layers.el --- Spacemacs Layer layers File | |
;; | |
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors | |
;; | |
;; Author: Sylvain Benner <sylvain.benner@gmail.com> | |
;; URL: https://github.com/syl20bnr/spacemacs | |
;; | |
;; This file is not part of GNU Emacs. | |
;; | |
;;; License: GPLv3 | |
(configuration-layer/declare-layers '(spacemacs-base | |
spacemacs-completion | |
spacemacs-layouts | |
spacemacs-editing | |
spacemacs-editing-visual | |
spacemacs-evil | |
spacemacs-language | |
spacemacs-misc | |
spacemacs-ui | |
spacemacs-ui-visual | |
spacemacs-org)) | |
;; If the user has not explicitly declared `helm' or `ivy' | |
;; and they are using the standard distribution, assume they | |
;; want `helm' completion. | |
(unless (or (configuration-layer/layer-usedp 'ivy) | |
(configuration-layer/layer-usedp 'helm)) | |
(configuration-layer/declare-layers '(helm))) |