summaryrefslogtreecommitdiff
path: root/config.org
diff options
context:
space:
mode:
Diffstat (limited to 'config.org')
-rw-r--r--config.org15
1 files changed, 15 insertions, 0 deletions
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