aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/init.el b/init.el
index c56748c..8f66332 100644
--- a/init.el
+++ b/init.el
@@ -193,6 +193,21 @@
193 :init (add-hook 'after-init-hook 'all-the-icons-ivy-setup)) 193 :init (add-hook 'after-init-hook 'all-the-icons-ivy-setup))
194 194
195 195
196;; ---------------------------------
197;; Highlight stuff
198;; ---------------
199;; Sometimes it's hard to find
200;; things. Highlighting makes it a
201;; little easier.
202;; ---------------------------------
203
204;; Highlight current line
205(use-package hl-line
206 :straight (:type built-in)
207 :config (set-face-attribute 'hl-line nil :background "#111")
208 :hook (prog-mode . hl-line-mode))
209
210
196 211
197 212
198;; --------------------------------------------------------------------- 213;; ---------------------------------------------------------------------