¥
Size: a a a
¥
PG
--debug-init
не помогает?ND
ND
PG
ND
¥
PG
¥
(use-package evil
:custom
;; on emacs 28 it can be changed do 'undo-redo
(evil-undo-system 'undo-tree)
(evil-move-cursor-back nil)
(evil-move-beyond-eol t)
:config
(evil-ex-define-cmd "q" `kill-buffer)
:hook (after-init . evil-mode)
:bind (:map evil-normal-state-map
("U" . evil-redo)
("C-/" . comment-dwim)
("C-c m" . compile)
("C-c r" . recompile))
:bind (:map evil-motion-state-map
("C-x C-k" . ibuffer)))
¥
PG
ND
(prog1 'evil
(leaf-handler-leaf-protect evil
(unless
(fboundp 'evil-mode)
(autoload #'evil-mode "evil" nil t))
(declare-function evil-mode "evil")
(add-hook 'after-init-hook #'evil-mode)
(customize-set-variable 'evil-want-Y-yank-to-eol t "Customized with leaf in evil block")
(customize-set-variable 'evil-want-integration t "Customized with leaf in evil block")
(customize-set-variable 'evil-want-keybinding nil "Customized with leaf in evil block")
(customize-set-variable 'evil-want-C-u-scroll t "Customized with leaf in evil block")
(customize-set-variable 'evil-split-window-below t "Customized with leaf in evil block")
(customize-set-variable 'evil-vsplit-window-right t "Customized with leaf in evil block")
(customize-set-variable 'evil-echo-state nil "Customized with leaf in evil block")
(customize-set-variable 'evil-undo-system 'undo-redo "Customized with leaf in evil block")))
ND
ND
ND
PG
PG
ND
(use-package evil
:custom
;; on emacs 28 it can be changed do 'undo-redo
(evil-undo-system 'undo-tree)
(evil-move-cursor-back nil)
(evil-move-beyond-eol t)
:config
(evil-ex-define-cmd "q" `kill-buffer)
:hook (after-init . evil-mode)
:bind (:map evil-normal-state-map
("U" . evil-redo)
("C-/" . comment-dwim)
("C-c m" . compile)
("C-c r" . recompile))
:bind (:map evil-motion-state-map
("C-x C-k" . ibuffer)))