aboutsummaryrefslogtreecommitdiffstats
path: root/doom
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-12-24 22:23:25 +0100
committerYann Herklotz <git@yannherklotz.com>2021-12-24 22:23:25 +0100
commit1c71fd1ce1fbbe9b552d033e019cad1bc5c90e12 (patch)
tree552a90ed7ce5d4dde9dbdd44eb9633d7729c2b4b /doom
parent4869e1999360ae750244395108aac5dc3492f071 (diff)
downloaddotfiles-1c71fd1ce1fbbe9b552d033e019cad1bc5c90e12.tar.gz
dotfiles-1c71fd1ce1fbbe9b552d033e019cad1bc5c90e12.zip
Update emacs email configuration
Diffstat (limited to 'doom')
-rw-r--r--doom/config.el11
1 files changed, 9 insertions, 2 deletions
diff --git a/doom/config.el b/doom/config.el
index 527a7ee..5b7850b 100644
--- a/doom/config.el
+++ b/doom/config.el
@@ -97,8 +97,6 @@
;; Mac configuration
(when (eq system-type 'darwin)
(progn (setq mac-right-option-modifier 'none
- mac-option-key-is-meta nil
- mac-command-key-is-meta t
mac-command-modifier 'meta
mac-option-modifier nil)
@@ -809,6 +807,7 @@ https://yannherklotz.com")
(setq notmuch-fcc-dirs
'(("yann@yannherklotz.com" . "mailbox/Sent -inbox +sent -unread +mailbox -new")
+ ("git@ymhg.org" . "mailbox/Sent -inbox +sent -unread +mailbox -new")
("yann.herklotz15@imperial.ac.uk" . "\"imperial/Sent Items\" -inbox +sent -unread +imperial -new"))))
(use-package! orderless
@@ -996,3 +995,11 @@ https://yannherklotz.com")
(other-frame 2))
(define-key y-map (kbd "o") #'ymhg/reset-coq-windows)
+
+(use-package! tree-sitter
+ :config
+ (require 'tree-sitter-langs)
+ (global-tree-sitter-mode)
+ (add-hook 'tree-sitter-after-on-hook #'tree-sitter-hl-mode))
+
+(use-package! ol-notmuch :after org)