home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit 32aeb4f348deb10d5014d80d33bb4ea682237b69
parent 5d552efa9c82b6f7c59aa82ee234f07ab5e896ee
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu,  4 Jul 2024 18:10:52 +0200

tools/emacs: fix incorrect "provide" in config

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-keybindings.el | 4++--
Mtools/emacs/config/config-shells.el | 3++-
Mtools/emacs/config/programming-js.el | 4++--
3 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/tools/emacs/config/config-keybindings.el b/tools/emacs/config/config-keybindings.el @@ -12,5 +12,5 @@ ;; -;; (provide 'config-keybindings) -;; ;;; config-keybindings.el ends here +(provide 'config-keybindings) +;;; config-keybindings.el ends here diff --git a/tools/emacs/config/config-shells.el b/tools/emacs/config/config-shells.el @@ -402,4 +402,5 @@ toggle, the current window configuration is saved in a register." (add-hook 'shell-mode-hook #'generic-term-init) (add-hook 'eshell-mode-hook #'generic-term-init) -(provide 'setup-shells) +(provide 'config-shells) +;;; config-shells.el ends here diff --git a/tools/emacs/config/programming-js.el b/tools/emacs/config/programming-js.el @@ -19,5 +19,5 @@ :hook (json-mode . json-ts-mode-hook)) -(provide 'programming-go) -;;; programming-go.el ends here +(provide 'programming-js) +;;; programming-js.el ends here