Add avy to implicit dependencies
This commit is contained in:
parent
d2dd38386b
commit
3ffe41cd1b
3 changed files with 27 additions and 2 deletions
1
init.el
1
init.el
|
|
@ -38,6 +38,7 @@
|
||||||
(require 'pkg/lsp "$HOME/.emacs.d/pkg/lsp.el")
|
(require 'pkg/lsp "$HOME/.emacs.d/pkg/lsp.el")
|
||||||
(require 'pkg/dashboard "$HOME/.emacs.d/pkg/dashboard.el")
|
(require 'pkg/dashboard "$HOME/.emacs.d/pkg/dashboard.el")
|
||||||
(require 'pkg/undo-tree "$HOME/.emacs.d/pkg/undo-tree.el")
|
(require 'pkg/undo-tree "$HOME/.emacs.d/pkg/undo-tree.el")
|
||||||
|
(require 'pkg/avy "$HOME/.emacs.d/pkg/avy.el")
|
||||||
|
|
||||||
;; Themes
|
;; Themes
|
||||||
(require 'themes/themes "$HOME/.emacs.d/themes/themes.el")
|
(require 'themes/themes "$HOME/.emacs.d/themes/themes.el")
|
||||||
|
|
|
||||||
18
pkg/avy.el
Normal file
18
pkg/avy.el
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
;;; avy.el --- summary
|
||||||
|
|
||||||
|
;; Author: Maciej Szlosarczyk
|
||||||
|
;; Maintainer: Maciej Szlosarczyk
|
||||||
|
;; Version: 0.1-snapshot
|
||||||
|
|
||||||
|
;;; Commentary:
|
||||||
|
|
||||||
|
;; Avy is a navigation manager.
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(use-package avy
|
||||||
|
:ensure t
|
||||||
|
:defer t)
|
||||||
|
|
||||||
|
(provide 'pkg/avy)
|
||||||
|
;;; avy.el ends here
|
||||||
10
pkg/hydra.el
10
pkg/hydra.el
|
|
@ -16,15 +16,21 @@ _a_: Grep in buffer _s_: Switch project _m_: Git status
|
||||||
_b_: Buffer list _f_: Find file in project _C_: Git checkout
|
_b_: Buffer list _f_: Find file in project _C_: Git checkout
|
||||||
_t_: Find file _g_: Grep in current project _M_: Git blame
|
_t_: Find file _g_: Grep in current project _M_: Git blame
|
||||||
_d_: Deft _c_: Invalidate cache
|
_d_: Deft _c_: Invalidate cache
|
||||||
^^ _n_: New project
|
_w_: Avy goto word _n_: New project
|
||||||
^^ _i_: IELM console
|
_l_: Avy goto line _i_: IELM console
|
||||||
|
_:_: Avy goto char
|
||||||
"
|
"
|
||||||
|
|
||||||
("q" nil "cancel" :color blue)
|
("q" nil "cancel" :color blue)
|
||||||
|
|
||||||
("a" counsel-rg)
|
("a" counsel-rg)
|
||||||
("b" ibuffer)
|
("b" ibuffer)
|
||||||
("t" counsel-find-file)
|
("t" counsel-find-file)
|
||||||
("d" deft)
|
("d" deft)
|
||||||
|
("w" avy-goto-word-0)
|
||||||
|
("l" avy-goto-line)
|
||||||
|
(":" avy-goto-char)
|
||||||
|
|
||||||
("s" counsel-projectile-switch-project)
|
("s" counsel-projectile-switch-project)
|
||||||
("f" counsel-projectile-find-file)
|
("f" counsel-projectile-find-file)
|
||||||
("g" counsel-projectile-rg)
|
("g" counsel-projectile-rg)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue