diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-27 21:42:06 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-27 21:42:06 +0100 |
commit | 6d81cb20510070312efd3566051bff805f9da86a (patch) | |
tree | d87a8c0e50701863f3b470cce786ff2ae90e7513 /Emacs/.config | |
parent | 904e62b27334d628d0b3bd899438d5af078c5a0d (diff) | |
download | dotfiles-6d81cb20510070312efd3566051bff805f9da86a.tar.gz dotfiles-6d81cb20510070312efd3566051bff805f9da86a.tar.bz2 dotfiles-6d81cb20510070312efd3566051bff805f9da86a.zip |
(Emacs)~some evil settings
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 |