~earneson/emacs-ddate

2485705c9dde2c12557549fc7dcbd042175a1b64 — Erik L. Arneson 11 months ago 31576a6
Add instructions for installing with MELPA
1 files changed, 15 insertions(+), 1 deletions(-)

M README.org
M README.org => README.org +15 -1
@@ 1,10 1,24 @@
#+TITLE: ddate.el
#+AUTHOR: Erik L. Arneson

This package provides support for the [[https://github.com/bo0ts/ddate][ddate]] command.

* Installation

You can install this via =use-package= and [[https://github.com/quelpa/quelpa-use-package][=quelpa-use-package=]].
This package is now available on [[https://melpa.org/][MELPA]], so you can install it by adding MELPA to your list of
packages and then using =use-package= like this:

  #+begin_src emacs-lisp
    (require 'package)
    (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
    (package-initialize)

    (use-package ddate
      :ensure t)
  #+end_src

You can also install this package directly from this repository via =use-package= and
[[https://github.com/quelpa/quelpa-use-package][=quelpa-use-package=]]. 

#+begin_src emacs-lisp
  (use-package ddate