Created
July 23, 2018 19:22
-
-
Save arubis/a61dca1a31752dbcc37ad560ccb1a97f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defconst crosshairs-packages | |
'( | |
(vline :location (recipe | |
:fetcher github | |
:repo "emacsmirror/emacswiki.org" | |
:files ("vline.el"))) | |
(col-highlight :location (recipe | |
:fetcher github | |
:repo "emacsmirror/emacswiki.org" | |
:files ("col-highlight.el"))) | |
(hl-line :location (recipe | |
:fetcher github | |
:repo "emacsmirror/emacswiki.org" | |
:files ("hl-line.el"))) | |
(hl-line+ :location (recipe | |
:fetcher github | |
:repo "emacsmirror/emacswiki.org" | |
:files ("hl-line+.el"))) | |
(crosshairs :location (recipe | |
:fetcher github | |
:repo "emacsmirror/emacswiki.org" | |
:files ("crosshairs.el"))) | |
) | |
) | |
(defun init-crosshairs () | |
(use-package vline | |
:defer t | |
:init | |
;; | |
) | |
(use-package col-highlight | |
:defer t | |
:init | |
;; | |
) | |
(use-package hl-line | |
:defer t | |
:init | |
;; | |
) | |
(use-package hl-line+ | |
:defer t | |
:init | |
;; | |
) | |
(use-package crosshairs | |
:defer t | |
:commands (crosshairs crosshairs-mode crosshairs-flash crosshairs-highlight) | |
:init | |
(spacemacs|add-toggle crosshairs | |
:mode crosshairs-mode | |
:documentation "Highlight cursor position with crosshairs." | |
:evil-leader "thx") | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @arubis did you ever get this to work?