diff options
author | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-09-08 09:39:55 -0600 |
---|---|---|
committer | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-09-08 09:39:55 -0600 |
commit | f4f88ea6ac2affdac4246b9e6a6a4ec3fdeb92f5 (patch) | |
tree | 27e070be909dcd9210ad092b8341500d64aca12b /mixins/vim-like.el | |
parent | 9e2f11f7b2e3b00c04af09c984e942ce027adecc (diff) |
Rename mixin → extra
Diffstat (limited to 'mixins/vim-like.el')
-rw-r--r-- | mixins/vim-like.el | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/mixins/vim-like.el b/mixins/vim-like.el deleted file mode 100644 index f150e4a..0000000 --- a/mixins/vim-like.el +++ /dev/null @@ -1,32 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Vim emulation - -;;; Usage: Append or require this file from init.el for bindings in Emacs. - -;;; Contents: -;;; -;;; - Core Packages - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Core Packages -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Evil: vi emulation -(use-package evil - :ensure t - - :init - (setq evil-respect-visual-line-mode t) - (setq evil-undo-system 'undo-redo) - - ;; Enable this if you want C-u to scroll up, more like pure Vim - ;(setq evil-want-C-u-scroll t) - - :config - (evil-mode) - - ;; Configuring initial major mode for some modes - (evil-set-initial-state 'vterm-mode 'emacs)) |