commit 1ee6ff225abe82c7fa4d41a0c4e853af73980633 parent 3ce3479ac470ca201fd1a86dbf735cd08c179789 Author: MDSabtusol <tfelypoc@solehin.neocities.org> Date: Tue, 11 Feb 2025 00:44:14 -0900 Alḥamdulillāh rabbil-ʿālamīn! Diffstat:
A | init.1.el | | | 31 | +++++++++++++++++++++++++++++++ |
1 file changed, 31 insertions(+), 0 deletions(-)
diff --git a/init.1.el b/init.1.el @@ -0,0 +1,31 @@ +;; Bismillahirrahmanniraheem, +;; (Ar' Raheem) ٱلرَّحِیمِ ;; (Ar' Rah'maan) ٱلرَّحۡمَـٰنِ + +;https://protesilaos.com/codelog/2024-11-28-basic-emacs-configuration/#h:1e4fde73-a2a2-4dc5-82ad-02cf3884ece6 +(setq custom-file (locate-user-emacs-file "custom.el")) +(load custom-file :no-error-if-file-is-missing) +(require 'package) +(package-initialize) +(when (< emacs-major-version 29) + (unless (package-installed-p 'use-package) + (unless package-archive-contents (package-refresh-contents)) +(package-install 'use-package) )) + +(use-package vertico :ensure t + :hook (after-init . vertico-mode)) + +(use-package modus-themes :ensure t +:config (load-theme 'modus-vivendi-tinted) +(setopt modus-themes-bold-constructs t) +(setq modus-themes-custom-auto-reload t) +(setq modus-themes-italic-constructs nil) +(setq modus-themes-disable-other-themes t) +(setopt modus-themes-mixed-fonts nil) +(setopt modus-themes-to-rotate +'(modus-vivendi modus-vivendi-tinted + modus-vivendi-deuteranopia + modus-vivendi-tritanopia )) +(setopt modus-themes-to-toggle + '(modus-operandi-tinted modus-vivendi-tinted))) + +;; Alḥamdulillāh rabbil-ʿālamīn!