commit c1ef33044503d8f56cb5a28e1f7acbae2414fed3
parent 9524a8eaf1f1274eac3ca0d848e8a1fee988b148
Author: Vincent Demeester <vincent@sbr.pm>
Date: Tue, 28 May 2024 14:27:54 +0200
tools/emacs: install combobulate from dev branch…
… because it has support for Go.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/tools/emacs/config/programming-treesitter.el b/tools/emacs/config/programming-treesitter.el
@@ -13,7 +13,8 @@
(use-package combobulate
:preface
(unless (package-installed-p 'combobulate)
- (package-vc-install "https://github.com/mickeynp/combobulate"))
+ (package-vc-install '(combobulate :url "https://github.com/mickeynp/combobulate"
+ :branch "development")))
;; You can customize Combobulate's key prefix here.
;; Note that you may have to restart Emacs for this to take effect!
(setq combobulate-key-prefix "C-c o")
@@ -31,10 +32,7 @@
(typescript-ts-mode . combobulate-mode)
(json-ts-mode . combobulate-mode)
(tsx-ts-mode . combobulate-mode)
- (go-ts-mode . combobulate-mode))
- ;; Amend this to the directory where you keep Combobulate's source
- ;; code.
- :load-path ("path-to-git-checkout-of-combobulate")))
+ (go-ts-mode . combobulate-mode))))
(provide 'programming-treesitter)
;;; programming-treesitter.el ends here