tree sitter

This commit is contained in:
Anthony Cicchetti 2021-12-26 14:47:32 -05:00
parent ab52535dc1
commit 058648403c

View file

@ -295,18 +295,17 @@
(setq dashboard-banner-logo-title "Welcome to Emacs Dashboard")
(setq dashboard-center-content t))
(if (not (string-match "^aarch64-.*" system-configuration))
(progn
;; Tree-sitter
(use-package tree-sitter
:config
(global-tree-sitter-mode)
(add-hook 'tree-sitter-after-on-hook #'tree-sitter-hl-mode))
;; Tree Sitter
(use-package tree-sitter
:straight (tree-sitter :type git :host github :repo "emacs-tree-sitter/emacs-tree-sitter")
:config
(global-tree-sitter-mode)
(add-hook 'tree-sitter-after-on-hook #'tree-sitter-hl-mode))
;; Tree-sitter-langs
(use-package tree-sitter-langs
:after (tree-sitter)))
())
;; Tree-sitter-langs
(use-package tree-sitter-langs
:straight (tree-sitter-langs :type git :host github :repo "emacs-tree-sitter/tree-sitter-langs")
:after (tree-sitter))
;; Org Mode
(use-package org
@ -360,7 +359,8 @@
(add-hook 'markdown-mode-hook 'toc-org-mode))
(use-package ox-pandoc
:after (org))
:after (org)
:if (executable-find "pandoc"))
(use-package ox-jira
:after (org))