diff options
| author | yuzu-eva <stevenhu@web.de> | 2023-04-02 23:10:12 +0200 |
|---|---|---|
| committer | yuzu-eva <stevenhu@web.de> | 2023-04-02 23:10:12 +0200 |
| commit | 9c80a83fe0a4b3ae5a107413ace75e7ec92d0143 (patch) | |
| tree | 455747625e9e76faa663ea7fde56f455d443bad3 /config.org | |
| parent | f4c8e7e4196ce584a94ed91ffc19b5d27c0a23e8 (diff) | |
feat: added evil-surround
Diffstat (limited to 'config.org')
| -rw-r--r-- | config.org | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -434,6 +434,17 @@ Evil extension for org-mode (add-hook 'org-mode-hook 'evil-org-mode)) #+end_src +** Initialize =evil-surround= + +evil-surround is a minor mode that emulates vim-surround by Tim Pope. + +#+begin_src emacs-lisp + (use-package evil-surround + :ensure t + :config + (global-evil-surround-mode 1)) +#+end_src + ** Initialize =sudo-edit= Allow for editing files as sudo @@ -462,6 +473,7 @@ Better looking modeline. Using powerline with the spaceline theme :hook ('after-init-hook) . 'powerline-reset) #+end_src + ** Initialize =popup-kill-ring= Replaces the default "M-y" kill ring with a popup menu for easy selection @@ -472,12 +484,14 @@ Replaces the default "M-y" kill ring with a popup menu for easy selection :bind ("M-y" . popup-kill-ring)) #+end_src + ** Initialize =page-break-lines= #+begin_src emacs-lisp (use-package page-break-lines :ensure t :diminish page-break-lines-mode) #+end_src + * Programming section ** Initialize =company= |
