Created
July 11, 2017 16:38
-
-
Save anonymous/f680e2ab8364074bd0d38267b13a44fc to your computer and use it in GitHub Desktop.
Minimal emacs config to disable auto incrementing serials in zone files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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