aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-25 23:57:27 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-25 23:57:27 -0400
commit443aa2792081e09ea4f9ed10aea74ca3ad496e15 (patch)
tree9897d6043329629ec9ecf71720f9bfe6fed9159b
parentLower `gcmh-high-cons-threshold` in attempt to fix Emacs freezing (diff)
downloadmmosmacs-443aa2792081e09ea4f9ed10aea74ca3ad496e15.tar.gz
mmosmacs-443aa2792081e09ea4f9ed10aea74ca3ad496e15.tar.bz2
mmosmacs-443aa2792081e09ea4f9ed10aea74ca3ad496e15.zip
Move "Highlight Stuff" subsection to "Graphical Environment" Section
-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;; ---------------------------------------------------------------------