commit b2800a9ac808bbcbdabb715ee56d8262e3d6cf4b parent b2696d6c5c8c0062e1f427316ce27cb4d66f1748 Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 8 Jul 2024 18:18:35 +0200 tools/emacs: disable combobulate for now I am not using it. Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/emacs/config/programming-treesitter.el | | | 48 | ++++++++++++++++++++++++------------------------ |
1 file changed, 24 insertions(+), 24 deletions(-)
diff --git a/tools/emacs/config/programming-treesitter.el b/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