doom: Use tree-sitter for everything

This commit is contained in:
Alex Palaistras 2024-01-06 19:14:17 +00:00
parent bd818dddac
commit 822fec51a8
2 changed files with 20 additions and 25 deletions

View File

@ -55,13 +55,14 @@
(custom-set-faces!
;; Set colors consistent with Base16-Eighties theme.
'(default :background "#2d2d2d")
'(hl-line :background "#323232")
'(mode-line :background "#282828")
'(vertical-border :background "#282828" :foreground "#282828")
'(solaire-default-face :background "#282828")
'(solaire-hl-line-face :background "#323232")
'(treemacs-window-background-face :background "#323232")
'(default :background "#2d2d2d")
'(hl-line :background "#323232")
'(mode-line :background "#282828")
'(vertical-border :background "#282828" :foreground "#282828")
'(solaire-default-face :background "#282828")
'(solaire-hl-line-face :background "#323232")
'(treemacs-window-background-face :background "#323232")
`(tree-sitter-hl-face:function.call :foreground ,(doom-color 'functions))
;; Have whitespace blend into background until highlighted.
'(whitespace-space :background "#2d2d2d" :foreground "#2d2d2d")
@ -161,13 +162,6 @@
markdown-enable-wiki-links t
markdown-fontify-code-blocks-natively t))
(after! org
(setq org-fontify-quote-and-verse-blocks nil
org-fontify-whole-heading-line nil
org-hide-leading-stars nil
org-startup-indented nil)
(remove-hook! org-mode #'org-superstar-mode))
(after! org-roam
(setq org-roam-directory "~/Documents/Notes"))

View File

@ -6,7 +6,7 @@
:checkers
(syntax +childframe)
(spell +flyspell +hunspell)
(spell +hunspell)
:ui
doom
@ -53,23 +53,24 @@
(magit +forge)
pdf
rgb
tree-sitter
:lang
cc
(cc +tree-sitter)
data
emacs-lisp
(go +lsp)
javascript
(lua +lsp)
(go +lsp +tree-sitter)
(javascript +tree-sitter)
(lua +lsp +tree-sitter)
markdown
(org +dragndrop +present)
(php +lsp)
(python +lsp)
(php +lsp +tree-sitter)
(python +lsp +tree-sitter)
rest
(rust +lsp)
sh
web
yaml
(rust +lsp +tree-sitter)
(sh +fish +lsp +tree-sitter)
(web +tree-sitter)
(yaml +tree-sitter)
:config
(default +bindings +smartparens))