branch: elpa/nix-mode
commit 719482b70136ea2e1c60d40ba3413a3f1c7a21e0
Author: Matthew Bauer <[email protected]>
Commit: Matthew Bauer <[email protected]>
Update customizations for Nix related modes.
---
nix-mode.el | 8 ++++++++
nix-shell.el | 3 +--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/nix-mode.el b/nix-mode.el
index 8f229389bc..d7acf5369d 100644
--- a/nix-mode.el
+++ b/nix-mode.el
@@ -24,6 +24,14 @@
(require 'nix-format nil 'noerror)
+(defgroup nix nil
+ "Nix-related customizations"
+ :group 'languages)
+
+(defgroup nix-mode nil
+ "Nix mode customizations"
+ :group 'nix)
+
;;; Syntax coloring
(defconst nix-keywords
diff --git a/nix-shell.el b/nix-shell.el
index 4ce523f402..a7892a5148 100644
--- a/nix-shell.el
+++ b/nix-shell.el
@@ -10,12 +10,11 @@
;;; Code:
-
(require 'term)
(defcustom nix-shell-executable "nix-shell"
"Location of nix-shell executable."
- :group 'nix-mode)
+ :group 'nix)
;;;###autoload
(defun nix-shell (attribute)