Skip to content

Instantly share code, notes, and snippets.

@dustinlacewell
Created March 30, 2016 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinlacewell/91d7d2392e7b507cd0024dc8cfcedfd8 to your computer and use it in GitHub Desktop.
Save dustinlacewell/91d7d2392e7b507cd0024dc8cfcedfd8 to your computer and use it in GitHub Desktop.

ace-jump

(req-package ace-jump-mode
  :bind ("H-SPC" . ace-jump-mode)
  :config (setq ace-jump-mode-case-fold t))

ace-links

Quickly access links in buffers: https://github.com/abo-abo/ace-link

(req-package ace-link

  :bind (:map org-mode-map
              ("H-l" . ace-link-org))
  :bind (:map Info-mode-map
              ("H-l" . ace-link-info))
  :config
  (progn
    (ace-link-setup-default (kbd "H-l"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment