mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-05 12:37:33 -05:00
BREAKING CHANGE: This rewrites the :tools tree-sitter module to use treesit instead of tree-sitter.el. Users will need to adapt to treesit and remove any tree-sitter-specific config in their dotfiles. Ref: #7623 Ref: #7742 Ref: #8197
19 lines
794 B
EmacsLisp
19 lines
794 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/tree-sitter/packages.el
|
|
|
|
(package! treesit :built-in t)
|
|
(when (> emacs-major-version 28)
|
|
;; (package! combobulate
|
|
;; :recipe '(;; If pulled from emacsmirror, this would otherwise pull in test
|
|
;; ;; repos that users don't need.
|
|
;; :nonrecursive t
|
|
;; ;; HACK: This package has terrible autoload ettiquette, eagerly
|
|
;; ;; loading a number of expensive packages at startup, so
|
|
;; ;; autoloads are handled manually in config.el
|
|
;; :build (:not autoloads))
|
|
;; :pin "59b64d66d66eb84da6a2cedd152b1692378af674")
|
|
;; (when (modulep! :editor evil +everywhere)
|
|
;; (package! evil-textobj-tree-sitter
|
|
;; :pin "bce236e5d2cc2fa4eae7d284ffd19ad18d46349a"))
|
|
)
|