Skip to content

Instantly share code, notes, and snippets.

Created July 11, 2017 16:38
Show Gist options
  • Save anonymous/f680e2ab8364074bd0d38267b13a44fc to your computer and use it in GitHub Desktop.
Save anonymous/f680e2ab8364074bd0d38267b13a44fc to your computer and use it in GitHub Desktop.
Minimal emacs config to disable auto incrementing serials in zone files.
(setq inhibit-startup-message t)
(require 'package)
(setq package-enable-at-startup nil)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(package-initialize)
;; Bootstrap `use-package'
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(use-package dns-mode
:defer t
:config
(progn
;; Do not auto increment serial (C-c C-s to increment)
(setq dns-mode-soa-auto-increment-serial nil)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment