From 3ab82e25c4fa84e62e34e82a74ff60ac24eb2f25 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Sat, 10 Oct 2020 22:14:49 -0400
Subject: [PATCH] Reordered some of the layers so the language layers are last.

---
 .spacemacs | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/.spacemacs b/.spacemacs
index 839e9bf..db8a8a2 100644
--- a/.spacemacs
+++ b/.spacemacs
@@ -32,8 +32,8 @@ This function should only modify configuration layer settings."
 
    ;; List of configuration layers to load.
    dotspacemacs-configuration-layers
-   '(typescript
-     html
+   '(
+     spacemacs-layouts
      ;; ----------------------------------------------------------------
      ;; Example of useful layers you may want to use right away.
      ;; Uncomment some layer names and press `SPC f e R' (Vim style) or
@@ -41,14 +41,11 @@ This function should only modify configuration layer settings."
      ;; ----------------------------------------------------------------
      auto-completion
      better-defaults
-     emacs-lisp
      git
      helm
      ;ivy
-     java
      ;;lsp
      ;;(java :variables java-backend 'lsp)
-     markdown
      multiple-cursors
      (org :variables
           org-enable-org-journal-support t
@@ -64,19 +61,29 @@ This function should only modify configuration layer settings."
             shell-default-position 'bottom)
      spell-checking
      syntax-checking
-     treemacs
+     (treemacs :variables
+               treemacs-use-scope-type 'Perspectives
+               treemacs-use-git-mode 'extended
+               treemacs-lock-width t
+               treemacs-use-all-the-icons-theme t
+               )
      version-control
      docker
-     yaml
-     (python :variables python-backend 'anaconda)
      ;;python
      restclient
      ;;pdf-tools
      display
+     (python :variables python-backend 'anaconda)
+     yaml
      ruby
      haskell
      javascript
      ;scala
+     typescript
+     html
+     emacs-lisp
+     java
+     markdown
      )
 
    ;; List of additional packages that will be installed without being
-- 
GitLab