diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-25 23:57:27 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-25 23:57:27 -0400 |
commit | 443aa2792081e09ea4f9ed10aea74ca3ad496e15 (patch) | |
tree | 9897d6043329629ec9ecf71720f9bfe6fed9159b /init.el | |
parent | Lower `gcmh-high-cons-threshold` in attempt to fix Emacs freezing (diff) | |
download | mmosmacs-443aa2792081e09ea4f9ed10aea74ca3ad496e15.tar.gz mmosmacs-443aa2792081e09ea4f9ed10aea74ca3ad496e15.tar.bz2 mmosmacs-443aa2792081e09ea4f9ed10aea74ca3ad496e15.zip |
Move "Highlight Stuff" subsection to "Graphical Environment" Section
Diffstat (limited to 'init.el')
-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 | ;; --------------------------------------------------------------------- |