Variables in emacs can be grouped which simplifies changing their
values. This commit creates a group for custom variables.
(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
--- /dev/null
+;; 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)