Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajc/nginx-mode
Emacs editing mode for Nginx config files
https://github.com/ajc/nginx-mode
emacs emacs-lisp nginx
Last synced: about 2 months ago
JSON representation
Emacs editing mode for Nginx config files
- Host: GitHub
- URL: https://github.com/ajc/nginx-mode
- Owner: ajc
- Created: 2010-10-14T09:06:50.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T04:03:00.000Z (9 months ago)
- Last Synced: 2024-11-15T04:16:15.917Z (about 2 months ago)
- Topics: emacs, emacs-lisp, nginx
- Language: Emacs Lisp
- Homepage:
- Size: 25.4 KB
- Stars: 100
- Watchers: 3
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nginx-mode.el --- major mode for editing nginx config files
Copyright 2010 Andrew J Cosgriff
* Author: Andrew J Cosgriff
* Maintainer: Andrew J Cosgriff
* Created: 15 Oct 2010
* Keywords: nginxavailable from http://github.com/ajc/nginx-mode
[![MELPA](https://melpa.org/packages/nginx-mode-badge.svg)](https://melpa.org/#/nginx-mode)
[![MELPA Stable](https://stable.melpa.org/packages/nginx-mode-badge.svg)](https://stable.melpa.org/#/nginx-mode)Licensed under the [GPL version 2](http://www.gnu.org/licenses/) or later.
# Commentary
This is a quick mode for editing Nginx config files, as I didn't find
anything else around that did quite this much.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)
```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`
2. Files ending in `.conf` under `nginx` directoryIf you want `sites-enabled` dir, add this to `~/.emacs` (not done by
default, because can be shadowed by `apache-mode`):```lisp
(add-to-list 'auto-mode-alist '("/nginx/sites-\\(?:available\\|enabled\\)/" . nginx-mode))
```