aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-29 14:47:11 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-29 14:47:11 -0400
commitb6c1d2e471f27d81b1ae1f9736ccc55ed366c68e (patch)
tree367640a5476cc7cc6d4e831320c9a3e37591ef4f
parentDisable line numbers in terminal modes (diff)
downloadmmosmacs-b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e.tar.gz
mmosmacs-b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e.tar.bz2
mmosmacs-b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e.zip
Add some more temporary theming options
-rw-r--r--init.el30
1 files changed, 29 insertions, 1 deletions
diff --git a/init.el b/init.el
index 26522f2..1b4f930 100644
--- a/init.el
+++ b/init.el
@@ -147,13 +147,41 @@
147;; look at Emacs. 147;; look at Emacs.
148;; --------------------------------- 148;; ---------------------------------
149 149
150;; Jazz Theme
150(use-package jazz-theme 151(use-package jazz-theme
151 :straight t) 152 :straight t)
152
153(load-theme 'jazz t) 153(load-theme 'jazz t)
154 154
155;; Background color
155(set-background-color "black") 156(set-background-color "black")
156 157
158;; Cursor
159(setq cursor-type 'box)
160(set-cursor-color "grey13")
161
162;; Highlights
163(set-face-attribute 'highlight nil :background "#333")
164
165;; Selection
166(set-face-attribute 'region nil
167 :background "#222"
168 :foreground nil)
169
170;; Comments
171(set-face-attribute 'font-lock-comment-face nil :foreground "#222")
172
173;; Different face for delimiters
174(use-package paren-face
175 :straight t
176 :config
177 (set-face-attribute 'parenthesis nil :foreground "#222"))
178(add-hook 'after-init-hook 'global-paren-face-mode)
179
180;; Highlight color codes as their respective color
181(use-package rainbow-mode
182 :straight t
183 :hook (prog-mode . rainbow-mode))
184
157 185
158;; --------------------------------- 186;; ---------------------------------
159;; Fonts 187;; Fonts