Can't find my cursor on large monitors, but now I can flash it.

This commit is contained in:
Howard Abrams 2022-02-25 17:13:44 -08:00
parent 9d14742138
commit 4c62a1a6bf

View file

@ -64,6 +64,15 @@ Let's install and load some of packages from the [[https://github.com/hlissner/d
(use-package doom-themes) (use-package doom-themes)
#+END_SRC #+END_SRC
* Find the Bloody Cursor
Large screen, lots of windows, so where is the cursor?
#+BEGIN_SRC emacs-lisp
(use-package hl-line+
:config
(set-face-attribute 'hl-line nil :background "#846444" :inherit 'default)
:bind ("<f6>" . 'hl-line-flash))
#+END_SRC
* Themes * Themes
One does get used to a particular collection of colors. Mine is Tomorrow: One does get used to a particular collection of colors. Mine is Tomorrow:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp