Last active
September 28, 2018 14:50
-
-
Save yiufung/c96a1a1ee147c6d019ce7751a0acac2e to your computer and use it in GitHub Desktop.
org-mu4e-store-and-capture
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'package) | |
(setq package-enable-at-startup nil) | |
(add-to-list 'package-archives | |
'("melpa" . "https://melpa.org/packages/")) | |
(package-initialize) | |
(unless (package-installed-p 'use-package) | |
(package-refresh-contents) | |
(package-install 'use-package)) | |
(eval-when-compile | |
(require 'use-package)) | |
;; Start Test | |
(use-package counsel | |
:ensure t | |
:config | |
(ivy-mode 1)) | |
;; For sudo editing mu4e | |
(use-package crux | |
:ensure t | |
) | |
(use-package org | |
:load-path "~/projects/jwiegley-org/lisp/" | |
) | |
(use-package mu4e | |
;; Settings skip | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment