diff options
author | Case Duckworth | 2021-01-09 17:38:11 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-09 17:38:11 -0600 |
commit | 519d50217d443ad59127dcb627b9d568272f4e8c (patch) | |
tree | c7a6360685e3c36bbea5ee3ebe79e635e972a59f | |
parent | Remove sml/theme definition (diff) | |
download | emacs-519d50217d443ad59127dcb627b9d568272f4e8c.tar.gz emacs-519d50217d443ad59127dcb627b9d568272f4e8c.zip |
Add expand-region
-rw-r--r-- | config.org | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config.org b/config.org index c66b43c..f186784 100644 --- a/config.org +++ b/config.org | |||
@@ -1110,6 +1110,14 @@ For right now, I’m /just/ using Anzu – I don’t like parts of =isearch= but | |||
1110 | (add-hook 'before-save-hook #'acdw/whitespace-cleanup-maybe) | 1110 | (add-hook 'before-save-hook #'acdw/whitespace-cleanup-maybe) |
1111 | #+end_src | 1111 | #+end_src |
1112 | 1112 | ||
1113 | *** Expand region | ||
1114 | |||
1115 | #+begin_src emacs-lisp | ||
1116 | (straight-use-package 'expand-region) | ||
1117 | |||
1118 | (global-set-key (kbd "C-=") #'er/expand-region) | ||
1119 | #+end_src | ||
1120 | |||
1113 | * Programming | 1121 | * Programming |
1114 | 1122 | ||
1115 | ** Prettify symbols | 1123 | ** Prettify symbols |