summary refs log tree commit diff stats
path: root/.spacemacs
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2020-05-17 12:33:27 -0400
committerBen Morrison <ben@gbmor.dev>2020-05-17 12:33:27 -0400
commitac1868aec04f4576c2cfb0658977364cf9c129d3 (patch)
tree761c6ac31c83c6c05f32e1e89dfaa6f891ccc913 /.spacemacs
parent653adf1cc504c9d43da70cb2c2e850ff75c32b04 (diff)
downloaddogfiles-ac1868aec04f4576c2cfb0658977364cf9c129d3.tar.gz
var changes
Diffstat (limited to '.spacemacs')
-rw-r--r--.spacemacs23
1 files changed, 14 insertions, 9 deletions
diff --git a/.spacemacs b/.spacemacs
index a6e78bd..e96ae3f 100644
--- a/.spacemacs
+++ b/.spacemacs
@@ -33,15 +33,18 @@ This function should only modify configuration layer settings."
    ;; List of configuration layers to load.
    dotspacemacs-configuration-layers
    '(
-     c-c++
      asciidoc
+     c-c++
+     d
      go
      html
      markdown
      python
+     racket
      rust
      shell-scripts
      yaml
+     zig
      ;; ----------------------------------------------------------------
      ;; Example of useful layers you may want to use right away.
      ;; Uncomment some layer names and press `SPC f e R' (Vim style) or
@@ -489,16 +492,18 @@ configuration.
 Put your configuration code here, except for variables that should be set
 before packages are loaded."
 
-  (go :variables go-tab-width 4)
-  (go :variables go-format-before-save t)
-  (go :variables gofmt-command "goimports")
-  (go :variables go-use-golantci-lint t)
-  (go :variables go-use-test-args "-race -timeout 10s")
-  (go :variables go-backend 'lsp)
+  (setq go-tab-width 4)
+  (setq go-format-before-save t)
+  (setq gofmt-command "goimports")
+  (setq go-use-golantci-lint t)
+  (setq go-use-test-args "-race -timeout 10s")
+  (setq go-backend 'lsp)
+
+  (setq lsp-rust-server 'rust-analyzer)
 
-  (lsp :variables lsp-rust-server 'rust-analyzer)
+  (setq rust-format-on-save t)
 
-  (rust :variables rust-format-on-save t)
+  (spacemacs/toggle-evil-safe-lisp-structural-editing-on-register-hook-racket-mode)
 
   )