Rosenthal/modules/rosenthal/examples/emacs/init.el
Hilton Chain 9d90607a02
examples: emacs: Disable cua-mode by default.
* modules/rosenthal/examples/emacs/init-editing.el (emacs): Disable ‘cua-mode’.
* modules/rosenthal/examples/emacs/init.el: Add it to initial-scratch-message.
2026-02-16 13:59:26 +08:00

45 lines
1.1 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; -*- lexical-binding: t -*-
(setopt custom-file (locate-user-emacs-file "custom.el"))
(if (not (file-exists-p custom-file))
(make-empty-file custom-file)
(load custom-file))
;; Tweak garbage collection strategy.
(use-package gcmh
:config
(gcmh-mode 1))
;; Set default storage locations for various packages.
(use-package no-littering
:config
(no-littering-theme-backups))
(use-package emacs
:custom
;; Workaround to use fish as login shell.
(shell-file-name "/bin/sh"))
(load-file (locate-user-emacs-file "init-fonts.el"))
(load-file (locate-user-emacs-file "init-interface.el"))
(load-file (locate-user-emacs-file "init-editing.el"))
(load-file (locate-user-emacs-file "init-miscellaneous.el"))
;;;
;;; Set up initial screen.
;;;
(progn
(setopt initial-scratch-message
"\
;;; Type your Guile program here and evaluate it.
;;; `M-x cua-mode' to use Ctrl-C/X/Z for copy, cut, paste.
\n")
(scheme-mode)
(geiser-repl-import-module "(gnu)")
(geiser-repl-import-module "(nonguix)")
(geiser-repl-import-module "(rosenthal)")
(delete-window)
(display-splash-screen))