diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-29 14:47:11 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-29 14:47:11 -0400 |
commit | b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e (patch) | |
tree | 367640a5476cc7cc6d4e831320c9a3e37591ef4f /init.el | |
parent | Disable line numbers in terminal modes (diff) | |
download | mmosmacs-b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e.tar.gz mmosmacs-b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e.tar.bz2 mmosmacs-b6c1d2e471f27d81b1ae1f9736ccc55ed366c68e.zip |
Add some more temporary theming options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 30 |
1 files changed, 29 insertions, 1 deletions
@@ -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 |