diff options
author | stuebinm | 2023-10-30 13:12:37 +0100 |
---|---|---|
committer | stuebinm | 2023-10-30 13:12:37 +0100 |
commit | d9d1830207dace26ddd6de6da19619637b4e344e (patch) | |
tree | dad79df49b3aafbffe53eb7d324fe67a08526da2 /config.el | |
parent | 46ff29aa429ea416197929c64546a48dfaf563bb (diff) |
some improvements & fixes
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 |