Commit b2800a9ac808

Vincent Demeester <vincent@sbr.pm>
2024-07-08 18:18:35
tools/emacs: disable combobulate for now
I am not using it. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent b2696d6
Changed files (1)
tools
tools/emacs/config/programming-treesitter.el
@@ -8,31 +8,31 @@
   (setq treesit-auto-install 'prompt)
   (global-treesit-auto-mode))
 
-(unless (package-installed-p 'combobulate)
-  (package-vc-install '(combobulate :url "https://github.com/mickeynp/combobulate"
-				    :branch "development")))
+;; (unless (package-installed-p 'combobulate)
+;;   (package-vc-install '(combobulate :url "https://github.com/mickeynp/combobulate"
+;; 				    :branch "development")))
 
-(use-package combobulate
-  :load-path "~/.config/emacs/elpa/combobulate"
-  :config
-  ;; 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")
-
-  ;; Optional, but recommended.
-  ;;
-  ;; You can manually enable Combobulate with `M-x
-  ;; combobulate-mode'.
-  :hook
-  (python-ts-mode . combobulate-mode)
-  (js-ts-mode . combobulate-mode)
-  (html-ts-mode . combobulate-mode)
-  (css-ts-mode . combobulate-mode)
-  (yaml-ts-mode . combobulate-mode)
-  (typescript-ts-mode . combobulate-mode)
-  (json-ts-mode . combobulate-mode)
-  (tsx-ts-mode . combobulate-mode)
-  (go-ts-mode . combobulate-mode))
+;; (use-package combobulate
+;;   :load-path "~/.config/emacs/elpa/combobulate"
+;;   :config
+;;   ;; 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")
+;; 
+;;   ;; Optional, but recommended.
+;;   ;;
+;;   ;; You can manually enable Combobulate with `M-x
+;;   ;; combobulate-mode'.
+;;   :hook
+;;   (python-ts-mode . combobulate-mode)
+;;   (js-ts-mode . combobulate-mode)
+;;   (html-ts-mode . combobulate-mode)
+;;   (css-ts-mode . combobulate-mode)
+;;   (yaml-ts-mode . combobulate-mode)
+;;   (typescript-ts-mode . combobulate-mode)
+;;   (json-ts-mode . combobulate-mode)
+;;   (tsx-ts-mode . combobulate-mode)
+;;   (go-ts-mode . combobulate-mode))
 
 (provide 'programming-treesitter)
 ;;; programming-treesitter.el ends here