diff options
author | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-03-14 15:27:16 -0600 |
---|---|---|
committer | Ashton Wiersdorf <ashton.wiersdorf@pobox.com> | 2023-03-14 15:28:44 -0600 |
commit | fe99f00683ab087748be5c89f3cca4523bfbf536 (patch) | |
tree | 7d64f9c9c5a640bbeb1546778a66cb935de81a13 /mixins/vim-like.el | |
parent | b05de096968ca584714f643611429fc7fbcef400 (diff) |
Big update: add initial evil-mode (vim emulation) config; fix typos
Diffstat (limited to 'mixins/vim-like.el')
-rw-r--r-- | mixins/vim-like.el | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/mixins/vim-like.el b/mixins/vim-like.el index 6de8431..02468a3 100644 --- a/mixins/vim-like.el +++ b/mixins/vim-like.el @@ -15,8 +15,49 @@ ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Evil: vi emulation +(use-package evil + :ensure t + :init + (setq evil-respect-visual-line-mode t) + (setq evil-undo-system 'undo-redo) + (setq evil-want-keybinding nil) ; prep to load evil-collection + :config + (evil-mode) + + ;; Configuring initial major mode for some modes + (evil-set-initial-state 'vterm-mode 'emacs)) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Evil Enhancements ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; Evil-collection: handy evil bindings for lots of different modes +(use-package evil-collection + :ensure t + :after evil + :config + ;; Other good ones to enable: magit, mu4e, eglot, etc. + (evil-collection-init '(dired info)) + + ;; You can add evil-mode keybindings here; for example, when we're in + ;; special-mode, it usually means we're in some kind of uneditable buffer like + ;; a message popup etc. `q' will quit inside these windows instead of starting + ;; a macro recording. + (evil-collection-define-key 'normal 'special-mode-map + (kbd "q") 'quit-window)) + +;; Evil-owl: preview what's in your vim registers +(use-package evil-owl + :ensure t + :config + (setq evil-owl-idle-delay 0.3) + (setq evil-owl-max-string-length 500) + (add-to-list 'display-buffer-alist + '("*evil-owl*" + (display-buffer-in-side-window) + (side . bottom) + (window-height . 30))) + (evil-owl-mode)) |