aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2021-03-12 03:22:41 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2021-03-12 03:22:41 +0000
commit45266f64cc21a170ceed8cf807a624402366bfa1 (patch)
tree09dfcfcba999057977412a869938c2d13bf590b0
parent540ece0f633af1f8dff7a95d01becfd7250ce5f9 (diff)
downloaddotfiles-45266f64cc21a170ceed8cf807a624402366bfa1.tar.gz
dotfiles-45266f64cc21a170ceed8cf807a624402366bfa1.tar.bz2
dotfiles-45266f64cc21a170ceed8cf807a624402366bfa1.zip
(Emacs)-evil lion
Evil-lion isn't needed when I can just use visual mode and =align-regexp=.
-rw-r--r--Emacs/.config/emacs/config.org24
1 files changed, 0 insertions, 24 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org
index 639c31f..d1d8983 100644
--- a/Emacs/.config/emacs/config.org
+++ b/Emacs/.config/emacs/config.org
@@ -397,30 +397,6 @@ which pauses cursors upon placing a cursor at the current position.
(evil-mc-pause-cursors)))
#+end_src
-*** Evil lion
-Evil lion provides alignment operators. Alignment operators allow you
-to, on some given text, align it via a symbol.
-
-For example it can transform the following
-#+begin_example
-(James . 19)
-(Arthur . 22)
-#+end_example
-
-to
-#+begin_example
-(James . 19)
-(Arthur . 22)
-#+end_example
-
-which would be done via =gl<object><symbol>= (in this case =glip.=)
-
-#+begin_src emacs-lisp
-(use-package evil-lion
- :after evil
- :config
- (evil-lion-mode))
-#+end_src
*** Evil collection
Setup evil collection, but don't turn on the mode. Instead, I'll turn
on setups for specific modes I think benefit from it.