Add expand-region
This commit is contained in:
parent
6ab0b13c29
commit
ae07ba56ef
2 changed files with 11 additions and 0 deletions
7
custom/setup-expand-region.el
Normal file
7
custom/setup-expand-region.el
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
(require 'expand-region)
|
||||||
|
|
||||||
|
(pending-delete-mode t)
|
||||||
|
|
||||||
|
(global-set-key (kbd "C-=") 'er/expand-region)
|
||||||
|
|
||||||
|
(provide 'setup-expand-region)
|
||||||
4
init.el
4
init.el
|
|
@ -44,6 +44,7 @@
|
||||||
helm-company
|
helm-company
|
||||||
dashboard
|
dashboard
|
||||||
multiple-cursors
|
multiple-cursors
|
||||||
|
expand-region
|
||||||
))
|
))
|
||||||
|
|
||||||
;; function to install new packages
|
;; function to install new packages
|
||||||
|
|
@ -95,6 +96,9 @@
|
||||||
;; setup multiple cursors
|
;; setup multiple cursors
|
||||||
(require 'setup-cursors)
|
(require 'setup-cursors)
|
||||||
|
|
||||||
|
;; setup expand-region
|
||||||
|
(require 'setup-expand-region)
|
||||||
|
|
||||||
;; start emacs server
|
;; start emacs server
|
||||||
(server-start)
|
(server-start)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue