diff options
author | Ben Morrison <ben@gbmor.dev> | 2020-05-12 03:05:02 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2020-05-12 03:05:02 -0400 |
commit | cfeea4529e0c5aee496a9040b2d0810b37b6000f (patch) | |
tree | 7f559243b530ef110ccd7cf1ab47d783b520b969 /.spacemacs | |
parent | cda155f65c89dd0bd0ec5b30751a5877fcd9367d (diff) | |
download | dogfiles-cfeea4529e0c5aee496a9040b2d0810b37b6000f.tar.gz |
added gruvbox theme, fixed go-related variables
Diffstat (limited to '.spacemacs')
-rw-r--r-- | .spacemacs | 9 |
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) ) |