diff options
-rw-r--r-- | .emacs.d/init-mu4e.el | bin | 1996 -> 2084 bytes | |||
-rw-r--r-- | .emacs.d/init.el | 5 | ||||
-rw-r--r-- | .emacs.d/modes/init-org-mode.el | 1 | ||||
-rw-r--r-- | .offlineimap.py | 4 | ||||
-rw-r--r-- | .offlineimaprc | bin | 995 -> 1063 bytes |
5 files changed, 10 insertions, 0 deletions
diff --git a/.emacs.d/init-mu4e.el b/.emacs.d/init-mu4e.el Binary files differindex 02835a5..a77568b 100644 --- a/.emacs.d/init-mu4e.el +++ b/.emacs.d/init-mu4e.el diff --git a/.emacs.d/init.el b/.emacs.d/init.el index bac98b0..669e93a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -106,3 +106,8 @@ :hook ((go-mode . (lambda () (setq tab-width 4))))) (use-package avy) + +(use-package dashboard + :ensure t + :config + (dashboard-setup-startup-hook)) diff --git a/.emacs.d/modes/init-org-mode.el b/.emacs.d/modes/init-org-mode.el index 31cf3e2..1bbf17d 100644 --- a/.emacs.d/modes/init-org-mode.el +++ b/.emacs.d/modes/init-org-mode.el @@ -27,6 +27,7 @@ (evil-define-key 'normal org-mode-map (kbd "TAB") 'org-cycle (kbd "RET") 'org-open-at-point + (kbd "<leader>ot") 'org-todo (kbd "<leader>os") 'org-schedule (kbd "<leader>od") 'org-deadline) diff --git a/.offlineimap.py b/.offlineimap.py index e868861..c304ef4 100644 --- a/.offlineimap.py +++ b/.offlineimap.py @@ -7,3 +7,7 @@ def gmail_nametrans(foldername): re.sub('starred', 'flagged', re.sub('bin', 'trash', re.sub(' ', '_', foldername.lower())))))) + +def gmail_folderfilter(foldername): + return foldername in ('INBOX', '[Gmail]/Starred', + '[Gmail]/Drafts', '[Gmail]/All Mail') diff --git a/.offlineimaprc b/.offlineimaprc Binary files differindex dc1f623..87cfe5a 100644 --- a/.offlineimaprc +++ b/.offlineimaprc |