From 10e1bb7dba8509c37dc3afe2e3f20451dc0ba4a9 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Sun, 2 Apr 2023 21:09:15 +0200 Subject: feat: evil-visual-mode "gc" comment or uncomment selected region --- config.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'config.org') diff --git a/config.org b/config.org index 5405756..58acc16 100644 --- a/config.org +++ b/config.org @@ -472,6 +472,7 @@ Replaces the default "M-y" kill ring with a popup menu for easy selection ("M-y" . popup-kill-ring)) #+end_src * Programming section + ** Initialize =company= Company is an autocompletion frontend @@ -482,3 +483,17 @@ Company is an autocompletion frontend :init (add-hook 'after-init-hook 'global-company-mode)) #+end_src + +* Custom keybinds + +Some custom keybinds to make life easier + +** Evil keybinds + +Keybinds for evil-mode + +*** Comment or uncomment selected region + +#+begin_src emacs-lisp + (evil-define-key 'visual 'global "gc" 'comment-or-uncomment-region) +#+end_src -- cgit v1.2.3