branch: elpa/nginx-mode
commit c4ac5de975d65c84893a130a470af32a48b0b66c
Author: Andrew J Cosgriff <[email protected]>
Commit: Andrew J Cosgriff <[email protected]>
update version to 1.1.10, and mention use-package
---
README.md | 6 ++++++
nginx-mode.el | 6 +++++-
2 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index e56b951508..f5b414eb3d 100644
--- a/README.md
+++ b/README.md
@@ -27,6 +27,12 @@ Put this file into your `load-path` and the following into
your `~/.emacs`:
(require 'nginx-mode)
```
+Now that nginx-mode is available via NonGNU ELPA, you could also:
+```lisp
+(use-package nginx-mode
+ :commands nginx-mode)
+```
+
The mode automatically activates for:
1. Files, called `nginx.conf`
diff --git a/nginx-mode.el b/nginx-mode.el
index 1589d50601..4a29d1ee95 100644
--- a/nginx-mode.el
+++ b/nginx-mode.el
@@ -5,7 +5,7 @@
;; Author: Andrew J Cosgriff <[email protected]>
;; Maintainer: Andrew J Cosgriff <[email protected]>
;; Created: 15 Oct 2010
-;; Version: 1.1.9
+;; Version: 1.1.10
;; Keywords: languages, nginx
;; available from http://github.com/ajc/nginx-mode
@@ -33,6 +33,10 @@
;; Put this file into your load-path and the following into your ~/.emacs:
;; (require 'nginx-mode)
+;;
+;; Now that nginx-mode is available via NonGNU ELPA, you could also:
+;; (use-package nginx-mode
+;; :commands nginx-mode)
;;; Code: