Add ace-link navigation configuration
This commit is contained in:
parent
ea7185c359
commit
70599ad053
13
emacs/.emacs.d/config/init-navigation.el
Normal file
13
emacs/.emacs.d/config/init-navigation.el
Normal file
@ -0,0 +1,13 @@
|
||||
;; lexical-binding: t; -*-
|
||||
|
||||
(use-package ace-link
|
||||
:general
|
||||
(normal Info-mode-map "o" #'ace-link-info)
|
||||
(normal help-mode-map "o" #'ace-link-help)
|
||||
(normal woman-mode-map "o" #'ace-link-woman)
|
||||
(normal eww-mode-map "o" #'ace-link-eww)
|
||||
(normal compilation-mode-map "o" #'ace-link-compilation)
|
||||
(normal custom-mode-map "o" #'ace-link-custom)
|
||||
(normal org-mode-map "M-o" #'ace-link-org))
|
||||
|
||||
(provide 'init-navigation)
|
@ -87,6 +87,7 @@
|
||||
(require 'init-dired)
|
||||
(require 'init-completion)
|
||||
(require 'init-editing)
|
||||
(require 'init-navigation)
|
||||
(require 'init-ui)
|
||||
(require 'init-projects)
|
||||
(require 'init-git)
|
||||
|
Loading…
Reference in New Issue
Block a user