mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
The git repo seems to not exist, and I rarely ever edit Nginx config files, so this package can go.
23 lines
409 B
EmacsLisp
23 lines
409 B
EmacsLisp
;;; siren-nginx.el --- jimeh's Emacs Siren: nginx-mode configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for nginx-mode.
|
|
|
|
;;; Code:
|
|
|
|
(use-package nginx-mode
|
|
:hook
|
|
(nginx-mode . siren-nginx-mode-setup)
|
|
|
|
:custom
|
|
(nginx-indent-level 4)
|
|
(nginx-indent-tabs-mode nil)
|
|
|
|
:preface
|
|
(defun siren-nginx-mode-setup ()
|
|
(setq-local tab-width 4)))
|
|
|
|
(provide 'siren-nginx)
|
|
;;; siren-nginx.el ends here
|