aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'init.el')
-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;; ---------------------------------