diff options
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/config.org | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 1f261b8..076343d 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -338,7 +338,8 @@ Setup the evil package, with some basic keybinds. (general-def :states 'normal [remap evil-window-vsplit] #'make-frame - "TAB" #'evil-jump-item) + "TAB" #'evil-jump-item + "r" #'evil-replace-state) (general-def :states 'visual :keymaps 'emacs-lisp-mode-map @@ -349,7 +350,8 @@ Setup the evil package, with some basic keybinds. :init (setq evil-want-keybinding nil evil-split-window-below t - evil-vsplit-window-right t) + evil-vsplit-window-right t + evil-want-abbrev-expand-on-insert-exit t) :config (evil-mode)) #+end_src @@ -465,7 +467,8 @@ config, any 'completing-read' function leverages the completions-list when =TAB= is used. Though I believe Ido is a better completion system than the -completions-list, it still has it's place and can be used in tandem with ido. +completions-list, it still has it's place and can be used in tandem +with ido. *** Ido Ido is a very old completion package that still works great to this day. Though it is limited in its scope (and may thus be called a |