summary refs log tree commit diff stats
path: root/.spacemacs
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2020-05-12 03:05:02 -0400
committerBen Morrison <ben@gbmor.dev>2020-05-12 03:05:02 -0400
commitcfeea4529e0c5aee496a9040b2d0810b37b6000f (patch)
tree7f559243b530ef110ccd7cf1ab47d783b520b969 /.spacemacs
parentcda155f65c89dd0bd0ec5b30751a5877fcd9367d (diff)
downloaddogfiles-cfeea4529e0c5aee496a9040b2d0810b37b6000f.tar.gz
added gruvbox theme, fixed go-related variables
Diffstat (limited to '.spacemacs')
-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)
   )