diff options
| author | bh <qn+git@excalibur.computer> | 2025-12-14 00:06:11 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2025-12-14 00:06:11 +0800 |
| commit | 096790cd907f4874e0e121c42b6b33a50e5105d2 (patch) | |
| tree | 622321021031f5b59084ab25fbe82da129c78a9e /config/evil.el | |
| parent | 490e3970b6df1ce400cb21b521da9a861b739023 (diff) | |
Cleaned the indentation up
Diffstat (limited to 'config/evil.el')
| -rw-r--r-- | config/evil.el | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/config/evil.el b/config/evil.el index 4bf6871..8d745f1 100644 --- a/config/evil.el +++ b/config/evil.el @@ -4,18 +4,18 @@ (setq evil-want-keybinding nil) (use-package evil - :init - (setq evil-want-integration t) ;; Required for evil-collection - (setq evil-undo-system 'undo-redo) ;; Use Emacs 28+ built-in undo-redo - :config - (evil-mode 1)) + :init + (setq evil-want-integration t) ;; Required for evil-collection + (setq evil-undo-system 'undo-redo) ;; Use Emacs 28+ built-in undo-redo + :config + (evil-mode 1)) ;; Restore Emacs-style C-n/C-p in insert mode for line movement ;; (define-key evil-insert-state-map (kbd "C-n") 'next-line) ;; (define-key evil-insert-state-map (kbd "C-p") 'previous-line)) (use-package evil-collection - :after evil - :straight (evil-collection :type git :host github :repo "emacs-evil/evil-collection" + :after evil + :straight (evil-collection :type git :host github :repo "emacs-evil/evil-collection" :files (:defaults "modes")) - :config - (evil-collection-init)) ;; Provides Evil bindings for many Emacs modes + :config + (evil-collection-init)) ;; Provides Evil bindings for many Emacs modes |
