Commit 32aeb4f348de

Vincent Demeester <vincent@sbr.pm>
2024-07-04 18:10:52
tools/emacs: fix incorrect "provide" in config
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 5d552ef
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
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
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