From b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e Mon Sep 17 00:00:00 2001 From: Mountain Man <43313373+MountainMan1312@users.noreply.github.com> Date: Mon, 29 May 2023 14:47:11 -0400 Subject: Add some more temporary theming options --- init.el | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'init.el') diff --git a/init.el b/init.el index 26522f2..1b4f930 100644 --- a/init.el +++ b/init.el @@ -147,13 +147,41 @@ ;; look at Emacs. ;; --------------------------------- +;; Jazz Theme (use-package jazz-theme :straight t) - (load-theme 'jazz t) +;; Background color (set-background-color "black") +;; Cursor +(setq cursor-type 'box) +(set-cursor-color "grey13") + +;; Highlights +(set-face-attribute 'highlight nil :background "#333") + +;; Selection +(set-face-attribute 'region nil + :background "#222" + :foreground nil) + +;; Comments +(set-face-attribute 'font-lock-comment-face nil :foreground "#222") + +;; Different face for delimiters +(use-package paren-face + :straight t + :config + (set-face-attribute 'parenthesis nil :foreground "#222")) +(add-hook 'after-init-hook 'global-paren-face-mode) + +;; Highlight color codes as their respective color +(use-package rainbow-mode + :straight t + :hook (prog-mode . rainbow-mode)) + ;; --------------------------------- ;; Fonts -- cgit v1.2.3