summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Pedro de Carvalho2014-03-21 18:58:48 +0000
committerGravatar Pedro de Carvalho2014-03-21 18:58:48 +0000
commitf8f576915d1179463209a21443ebaa71eb07cb70 (patch)
tree66df9a809a03ff444e2eab788496aa9cd92ceff4
parent06fe7300712ee20dd7c205dd3c3d68ee5ec98c89 (diff)
downloadnginx-mode-f8f576915d1179463209a21443ebaa71eb07cb70.tar.gz
nginx-mode-f8f576915d1179463209a21443ebaa71eb07cb70.zip
Update Readme with an example
added a line on how to load all files in a directory with nginx-mode.
-rw-r--r--README.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 2365cd5..5df9502 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,11 @@ Many thanks to the authors of puppet-mode.el, from where I found a
useful indentation function that I've modified to suit this situation.
Put this file into your load-path and the following into your ~/.emacs:
+```lisp
(require 'nginx-mode)
+```
-
-
+Example: To load nginx-mode to all files in your /etc/nginx/sites-available use:
+```lisp
+(add-to-list 'auto-mode-alist '("/etc/nginx/sites-available/.*" . nginx-mode))
+```