]> git.ekhem.eu.org Git - guix.git/commitdiff
[emacs] Define a group for custom variables.
authorJakub Czajka <jakub@ekhem.eu.org>
Thu, 22 Dec 2022 20:58:36 +0000 (21:58 +0100)
committerJakub Czajka <jczajka@google.com>
Sun, 24 Dec 2023 18:53:07 +0000 (19:53 +0100)
Variables in emacs can be grouped which simplifies changing their
values. This commit creates a group for custom variables.

conf/home/emacs.scm
emacs/.config/emacs/conf/conf-variables.el [new file with mode: 0644]

index 441dfdea1b63a12d1d5367ab2c40c6632da70ec6..fc290738fa7d003380a378e93dc97eae995a4e9f 100644 (file)
@@ -33,6 +33,7 @@
            (dotfiles
             (list "emacs/.config/emacs/init.el"
                   "emacs/.config/emacs/conf/conf-theme.el"
+                  "emacs/.config/emacs/conf/conf-variables.el"
                   "emacs/.local/bin/emacs_client")))))
 
 (define emacs-services
diff --git a/emacs/.config/emacs/conf/conf-variables.el b/emacs/.config/emacs/conf/conf-variables.el
new file mode 100644 (file)
index 0000000..b31ccd9
--- /dev/null
@@ -0,0 +1,9 @@
+;; Copyright (c) 2022 Jakub Czajka <jakub@ekhem.eu.org>
+;; License: GPL-3.0 or later.
+;;
+;; conf-variables.el - custom configration variables.
+
+(defgroup conf:configuration nil
+  "Custom configuration variables.")
+
+(provide 'conf-variables)