diff options
Diffstat (limited to 'config.el')
-rw-r--r-- | config.el | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -16,7 +16,7 @@ (setq org-roam-capture-templates '(("d" "default" plain "" :target - (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "${title}") + (file+head "%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}") :unnarrowed t))) ;; hooks to turn on lsp when entering haskell mode @@ -38,7 +38,6 @@ (add-to-list 'load-path "~/.nix-profile/share/emacs/site-lisp/mu4e/") - (after! mu4e (set-email-account! "hacc" '( (user-mail-address . "stuebinm@hacc.space") @@ -74,7 +73,9 @@ message-sendmail-extra-arguments '("--read-envelope-from") message-send-mail-function #'message-send-mail-with-sendmail) (setq mu4e-split-view 'vertical) - (setq mu4e-headers-visible-columns 80)) + (setq mu4e-headers-visible-columns 80) + ; initial search query ("/" by default, which makes fuzzy search annoying) + (setq mu4e-maildir-initial-input "")) (after! helm-dictionary (setq helm-dictionary-database |