From de56d1a1f20ba3fd889dda8927d8778825b6dc7f Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Sun, 14 Dec 2025 00:27:48 +0200 Subject: [PATCH] Enable tree-sitter-integrated modes --- .config/emacs/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/emacs/init.el b/.config/emacs/init.el index c911572..bea332b 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -62,6 +62,7 @@ (global-auto-revert-non-file-buffers t) (inhibit-startup-screen t) (show-paren-context-when-offscreen 'overlay) + (treesit-enabled-modes t) (xref-search-program 'ripgrep) ;; keep-sorted end ) @@ -264,7 +265,7 @@ (eglot-ensure)))) (use-package python - :bind (:map python-mode-map + :bind (:map python-ts-mode-map ("C-c C-p" . nil) ("C-c C-l" . nil) ("C-c t" . elpy-test))