aboutsummaryrefslogtreecommitdiff
path: root/modules/prog-go.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-07-18 17:47:53 -0500
committerCraig Jennings <c@cjennings.net>2026-07-18 17:47:53 -0500
commit125e28ee1073a4b83a9c933d747ecdbba4c17b4b (patch)
tree1677cc2a58516876fbfca6418b7a315420805295 /modules/prog-go.el
parent3f734920d2713924124b3fe8b0edf0c4b9c82bc8 (diff)
downloaddotemacs-125e28ee1073a4b83a9c933d747ecdbba4c17b4b.tar.gz
dotemacs-125e28ee1073a4b83a9c933d747ecdbba4c17b4b.zip
refactor(go): drop exec-path registration now duplicated at top level
Diffstat (limited to 'modules/prog-go.el')
-rw-r--r--modules/prog-go.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/prog-go.el b/modules/prog-go.el
index 2870cd0f..630b725c 100644
--- a/modules/prog-go.el
+++ b/modules/prog-go.el
@@ -133,7 +133,6 @@ Overrides default prog-mode keybindings with Go-specific commands."
:mode (("\\.go\\'" . go-ts-mode) ;; .go files use go-ts-mode
("go\\.mod\\'" . go-mod-ts-mode)) ;; go.mod uses go-mod-ts-mode
:config
- (add-to-list 'exec-path go-bin-path)
;; Use goimports for formatting (adds/removes imports automatically)
(setq gofmt-command "goimports"))