From 14ec033daae96c003acd549898e62b0e7c63823b Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Wed, 10 Oct 2018 19:24:03 -0400 Subject: [PATCH] added hotkey for company complete and removed set mark (redundant with visual mode) --- conf.org | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf.org b/conf.org index 1984714..86a5074 100644 --- a/conf.org +++ b/conf.org @@ -2176,6 +2176,7 @@ Some of these commands just get in the way of being evil (which really means tha (kbd "C-b") (kbd "C-a") (kbd "C-e") + (kbd "C-") (kbd "C-x C-;") (kbd "C-x C-l") @@ -2443,6 +2444,8 @@ These are for mode-specific bindings that can/should be outside of the evil maps (global-set-key (kbd "C-") 'global-hl-line-mode) (global-set-key (kbd "S-") 'display-line-numbers-mode) +(global-set-key (kbd "C-") 'company-complete) + (global-set-key (kbd "C-c e") 'nd/config-visit) (global-set-key (kbd "C-c r") 'nd/config-reload) (global-set-key (kbd "C-c s") 'sudo-edit)