summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--.spacemacs9
1 files changed, 5 insertions, 4 deletions
diff --git a/.spacemacs b/.spacemacs
index b2a6aab..bf7d405 100644
--- a/.spacemacs
+++ b/.spacemacs
@@ -134,8 +134,9 @@ values."
    ;; List of themes, the first of the list is loaded when spacemacs starts.
    ;; Press <SPC> T n to cycle to the next theme in the list (works great
    ;; with 2 themes variants, one dark and one light)
-   dotspacemacs-themes '(spacemacs-dark
-                         spacemacs-light)
+   dotspacemacs-themes '(gruvbox-dark-hard)
+                         ;;spacemacs-dark
+                         ;;spacemacs-light)
    ;; If non nil the cursor color matches the state color in GUI Emacs.
    dotspacemacs-colorize-cursor-according-to-state t
    ;; Default font, or prioritized list of fonts. `powerline-scale' allows to
@@ -317,8 +318,8 @@ layers configuration.
 This is the place where most of your configurations should be done. Unless it is
 explicitly specified that a variable should be set before a package is loaded,
 you should place your code here."
-  (go :variables gofmt-command "goimports")
-  (go :variables go-tab-width 4)
+  (setq gofmt-command "goimports")
+  (setq go-tab-width 4)
   (setq rust-format-on-save t)
   )