From: Jakub Czajka Date: Thu, 22 Dec 2022 20:58:36 +0000 (+0100) Subject: [emacs] Define a group for custom variables. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=03f70bfeeb6839e0bcafe367e8d3e4d4c0af9533;p=guix.git [emacs] Define a group for custom variables. Variables in emacs can be grouped which simplifies changing their values. This commit creates a group for custom variables. --- diff --git a/conf/home/emacs.scm b/conf/home/emacs.scm index 441dfde..fc29073 100644 --- a/conf/home/emacs.scm +++ b/conf/home/emacs.scm @@ -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 index 0000000..b31ccd9 --- /dev/null +++ b/emacs/.config/emacs/conf/conf-variables.el @@ -0,0 +1,9 @@ +;; Copyright (c) 2022 Jakub Czajka +;; License: GPL-3.0 or later. +;; +;; conf-variables.el - custom configration variables. + +(defgroup conf:configuration nil + "Custom configuration variables.") + +(provide 'conf-variables)