aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-06-19 12:44:09 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-06-19 12:44:09 -0400
commit52e7cdab4739ff582f6f662d8daeb0b9926ae418 (patch)
treec93fdd098c97d8c9259f2b597f633c9188590533
parentDisable auto-update agenda (diff)
downloadmmosmacs-52e7cdab4739ff582f6f662d8daeb0b9926ae418.tar.gz
mmosmacs-52e7cdab4739ff582f6f662d8daeb0b9926ae418.tar.bz2
mmosmacs-52e7cdab4739ff582f6f662d8daeb0b9926ae418.zip
Misc temporary theme changes, custom theme coming soon
-rw-r--r--init.el14
1 files changed, 12 insertions, 2 deletions
diff --git a/init.el b/init.el
index 938c960..952e8ad 100644
--- a/init.el
+++ b/init.el
@@ -249,7 +249,16 @@
249 249
250;; Modeline 250;; Modeline
251(set-face-attribute 'mode-line nil 251(set-face-attribute 'mode-line nil
252 :height 80) 252 :height 80
253 :box nil
254 :foreground "orange"
255 :background "#222")
256(set-face-attribute 'mode-line-inactive nil
257 :box nil
258 :foreground "#222"
259 :background "#111")
260(set-face-attribute 'mode-line-buffer-id nil
261 :foreground "orange")
253 262
254 263
255;; --------------------------------- 264;; ---------------------------------
@@ -302,8 +311,9 @@
302;; Highlight current line 311;; Highlight current line
303(use-package hl-line 312(use-package hl-line
304 :straight (:type built-in) 313 :straight (:type built-in)
305 :config (set-face-attribute 'hl-line nil :background "#111")
306 :hook (prog-mode . hl-line-mode)) 314 :hook (prog-mode . hl-line-mode))
315(require 'hl-line)
316(set-face-attribute 'hl-line nil :background "#111")
307 317
308 318
309;; --------------------------------- 319;; ---------------------------------