this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

langs: fix up go, add back to emacs

Aria f3b599e9 35d58210

+16 -3
+1
nix/hosts/clovis.nix
··· 29 29 "c" 30 30 "hackspace" 31 31 "virt" 32 + "go" 32 33 ]; 33 34 }; 34 35 services.ariade = {
+3 -3
nix/modules/environment/workstation/langs.nix
··· 67 67 gopls 68 68 ]; 69 69 environment.sessionVariables = { 70 - GOMODCACHE = "$XDG_DATA_HOME/go/pkg/mod"; 71 - GOPATH = "$XDG_DATA_HOME/go"; 72 - PATH = [ "$XDG_DATA_HOME/go/bin" ]; 70 + GOMODCACHE = "$HOME/.local/share/go/pkg/mod"; 71 + GOPATH = "$HOME/.local/share/go"; 72 + PATH = [ "$HOME/.local/share/go/bin" ]; 73 73 }; 74 74 }; 75 75
+8
nix/modules/services/emacs/config/config-langs.el
··· 127 127 :config 128 128 (add-hook 'yaml-ts-mode-hook (lambda () (interactive) (make-local-variable 'evil-shift-width) (setq evil-shift-width 2)))) 129 129 130 + ;;;; Go 131 + (use-package go-ts-mode 132 + :mode "\\.go\\'" 133 + :hook (go-ts-mode . format-all-mode)) 134 + (use-package go-mod-ts-mode 135 + :mode "/go\\.mod\\'" 136 + :hook (go-mod-ts-mode . format-all-mode)) 137 + 130 138 (provide 'config-langs)
+4
nix/modules/services/emacs/overlay.nix
··· 59 59 epkgs.emmet-mode 60 60 epkgs.cuda-mode 61 61 epkgs.cmake-mode 62 + (epkgs.treesit-grammars.with-grammars (grammars: [ 63 + grammars.tree-sitter-go 64 + grammars.tree-sitter-gomod 65 + ])) 62 66 ] 63 67 ++ lib.optional withOrg [ 64 68 # config-org.el