From 756a7394212657706c22690a2cb52d1e0505d2d3 Mon Sep 17 00:00:00 2001 From: Lucas Barbieri Date: Tue, 16 Apr 2024 20:17:34 -0300 Subject: [PATCH] add evil mode everywhere its really everywhere kindof --- desktop/configs/emacs/custom-file.el | 2 +- desktop/configs/emacs/init.el | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/desktop/configs/emacs/custom-file.el b/desktop/configs/emacs/custom-file.el index c88e9af..2696881 100644 --- a/desktop/configs/emacs/custom-file.el +++ b/desktop/configs/emacs/custom-file.el @@ -4,7 +4,7 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(package-selected-packages - '(magit yasnippet-snippets which-key powerline-evil helm go-mode doom-themes corfu company-fuzzy beacon))) + '(evil-collection magit yasnippet-snippets which-key powerline-evil helm go-mode doom-themes corfu company-fuzzy beacon))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/desktop/configs/emacs/init.el b/desktop/configs/emacs/init.el index 6d3cbb4..1a26256 100644 --- a/desktop/configs/emacs/init.el +++ b/desktop/configs/emacs/init.el @@ -82,6 +82,13 @@ :config (evil-mode 1)) +(use-package evil-collection + :ensure t + :init + (setq evil-want-keybinding nil) + :config + (evil-collection-init)) + (use-package org :ensure t)