Move elisp into a folder and switch to emacs-wayland on linux.

This commit is contained in:
Tom Alexander
2023-09-08 11:26:46 -04:00
parent c9617dd3cc
commit ed25cd6d31
22 changed files with 7 additions and 23 deletions

View File

@@ -0,0 +1,16 @@
(use-package treesit
:pin manual
:ensure nil
:commands (treesit-install-language-grammar treesit-ready-p)
:init
(setq treesit-language-source-alist '())
:config
;; Default to the max level of detail in treesitter highlighting. This
;; can be overridden in each language's use-package call with:
;;
;; :custom
;; (treesit-font-lock-level 3)
(setq treesit-font-lock-level 4)
)
(provide 'util-tree-sitter)