diff options
Diffstat (limited to '.config/emacs')
| -rw-r--r-- | .config/emacs/Emacs.org | 6 | ||||
| -rw-r--r-- | .config/emacs/init.el | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.config/emacs/Emacs.org b/.config/emacs/Emacs.org index 5865bcc..5e2353b 100644 --- a/.config/emacs/Emacs.org +++ b/.config/emacs/Emacs.org @@ -364,6 +364,9 @@ best git frontend ever (backward-word)) (global-set-key "\M-f" 'next-word) + (use-package expand-region) + (global-set-key (kbd "C-=") 'er/expand-region) + #+end_src @@ -421,9 +424,6 @@ best git frontend ever :ensure t :commands lsp-treemacs-errors-list) - (use-package expand-region) - (global-set-key (kbd "C-=") 'er/expand-region) - ;; company (use-package company :ensure t diff --git a/.config/emacs/init.el b/.config/emacs/init.el index 5f1978e..d7cf989 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -330,6 +330,9 @@ (backward-word)) (global-set-key "\M-f" 'next-word) +(use-package expand-region) +(global-set-key (kbd "C-=") 'er/expand-region) + (use-package lsp-mode :init (setq lsp-keymap-prefix "C-c l" @@ -381,9 +384,6 @@ :ensure t :commands lsp-treemacs-errors-list) - (use-package expand-region) - (global-set-key (kbd "C-=") 'er/expand-region) - ;; company (use-package company :ensure t |
