From 5814b905793d48b16377c58f5c42c9a184a1d41d Mon Sep 17 00:00:00 2001 From: Dustin Swan Date: Wed, 15 Jul 2015 13:29:36 -0600 Subject: [PATCH] Updating .spacemacs for new version, misc changes. --- spacemacs | 51 ++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 11 deletions(-) diff --git a/spacemacs b/spacemacs index ccda764..00c90e9 100644 --- a/spacemacs +++ b/spacemacs @@ -12,13 +12,48 @@ dotspacemacs-configuration-layer-path '() ;; List of configuration layers to load. If it is the symbol `all' instead ;; of a list then all discovered layers will be installed. - dotspacemacs-configuration-layers '(perforce git c-c++ haskell html javascript php markdown extra-langs auto-completion (colors :variables colors-enable-rainbow-identifiers t) restclient evil-snipe mu4e dustin perspectives rcirc org syntax-checking) + dotspacemacs-configuration-layers '(version-control + git + github + perforce + c-c++ + haskell + html + javascript + purescript + rust + ruby + python + markdown + extra-langs + latex + auto-completion + colors + restclient + evil-snipe + mu4e + dustin + eyebrowse + search-engine + erc + (org :variables org-enable-github-support t) + emacs-lisp + slime + (shell :variables shell-default-shell 'eshell shell-default-term-shell "/bin/bash") + emoji + syntax-checking) + ;; A list of packages and/or extensions that will not be install and loaded. - dotspacemacs-excluded-packages '(evil-escape) + dotspacemacs-excluded-packages '() ;; If non-nil spacemacs will delete any orphan packages, i.e. packages that ;; are declared in a layer which is not a member of ;; the list `dotspacemacs-configuration-layers' dotspacemacs-delete-orphan-packages t + + dotspacemacs-search-tools '("ag" "ack" "grep") + + dotspacemacs-additional-packages '() + ) ;; Settings @@ -103,22 +138,16 @@ "User initialization for Spacemacs. This function is called at the very startup." + (setq-default git-magit-status-fullscreen t) (setq-default git-enable-github-support t) - - (defun custom-persp/mail () - (interactive) - (custom-persp "Mail" - (mu4e))) - ) (defun dotspacemacs/config () "This is were you can ultimately override default Spacemacs configuration. This function is called at the very end of Spacemacs initialization." - (rainbow-mode) + (eyebrowse-setup-opinionated-keys) (setq powerline-default-separator 'nil) - (evil-leader/set-key "Lom" 'custom-persp/mail) -) + ) ;; Custom variables ;; ----------------