Commit b2800a9ac808
Changed files (1)
tools
emacs
config
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