diff options
-rw-r--r-- | init.el | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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 | ;; --------------------------------------------------------------------- |