mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
feat(core): use general.el for keybind definitions nearly everywhere
Primarily this replaces :bind with :general in all use-package calls.
This commit is contained in:
@@ -10,9 +10,9 @@
|
||||
|
||||
(use-package helm-make
|
||||
:after (helm-global-bindings)
|
||||
:bind
|
||||
(:map helm-command-map
|
||||
("m" . helm-make-projectile))
|
||||
:general
|
||||
(:keymaps 'helm-command-map
|
||||
"m" 'helm-make-projectile)
|
||||
|
||||
:custom
|
||||
(helm-make-cache-targets nil)
|
||||
|
||||
@@ -12,8 +12,8 @@
|
||||
:hook
|
||||
(makefile-mode . makefile-executor-mode)
|
||||
|
||||
:bind
|
||||
("C-c C-m" . makefile-executor-execute-project-target)
|
||||
:general
|
||||
("C-c C-m" 'makefile-executor-execute-project-target)
|
||||
|
||||
:config
|
||||
;; Replace get targets function with that from helm-make as it faster and more
|
||||
|
||||
Reference in New Issue
Block a user