Commit c1ef33044503

Vincent Demeester <vincent@sbr.pm>
2024-05-28 14:27:54
tools/emacs: install combobulate from dev branch…
… because it has support for Go. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 9524a8e
Changed files (1)
tools
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