aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.org11
1 files changed, 11 insertions, 0 deletions
diff --git a/config.org b/config.org
index 72a1d1b..2bae09a 100644
--- a/config.org
+++ b/config.org
@@ -227,6 +227,17 @@ Use [[https://magit.vc/][magit]] to supplement emacs built in version control sy
227 :config 227 :config
228 (paradox-enable)) 228 (paradox-enable))
229#+END_SRC 229#+END_SRC
230** expand-region
231[[https://github.com/magnars/expand-region.el][expand-region]] will expand a region by meanigful units. For example if you have
232the string ~"pony killer"~ and you move the cursor to the first p and hit the key
2331 time it will highlight ~pony~, hit it a 2nd time it will highlight ~pony
234killer~, and a 3rd time ~"pony killer"~ will be highlighted.
235
236#+BEGIN_SRC emacs-lisp
237(use-package expand-region
238 :ensure t
239 :bind ("C-=" . er/expand-region))
240#+END_SRC
230** avy 241** avy
231[[https://github.com/abo-abo/avy][avy]] is a quick way to jump around buffers 242[[https://github.com/abo-abo/avy][avy]] is a quick way to jump around buffers
232 243