Add cursor crosshairs
This commit is contained in:
parent
e57d2bab40
commit
d1da863ef7
@ -1142,5 +1142,18 @@ Taken from https://howardism.org/Technical/Emacs/eshell-why.html"
|
||||
(gnus-summary-prepare . gnus-summary-sort-by-most-recent-date)
|
||||
)
|
||||
|
||||
(use-package hl-column
|
||||
:config
|
||||
(defun hl-col-line-init ()
|
||||
"Toggle both `hl-column-mode' and `hl-line-mode' in sync."
|
||||
(interactive)
|
||||
(hl-line-mode 'toggle)
|
||||
(hl-column-mode 'toggle))
|
||||
:custom-face
|
||||
(hl-line
|
||||
((t (:background "#101010"))))
|
||||
(hl-column
|
||||
((t (:inherit hl-line)))))
|
||||
|
||||
(provide 'mitch-packages)
|
||||
;;; mitch-packages.el ends here
|
||||
|
Loading…
Reference in New Issue
Block a user