From 21401582d5db01a4c34e4a498126cc78479fd98b Mon Sep 17 00:00:00 2001 From: laurensmiers Date: Sat, 2 Apr 2016 16:54:13 +0200 Subject: [PATCH] Move helm setup to setup-helm.el --- custom/setup-helm.el | 3 +++ init.el | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/custom/setup-helm.el b/custom/setup-helm.el index 83512ac..14b0ece 100755 --- a/custom/setup-helm.el +++ b/custom/setup-helm.el @@ -5,6 +5,9 @@ ;; Changed to "C-c h". Note: We must set "C-c h" globally, because we ;; cannot change `helm-command-prefix-key' once `helm-config' is loaded. (global-set-key (kbd "C-c h") 'helm-command-prefix) + +(global-set-key (kbd "C-x C-f") 'helm-find-files) + (global-unset-key (kbd "C-x c")) (define-key helm-map (kbd "") 'helm-execute-persistent-action) ; rebind tab to do persistent action diff --git a/init.el b/init.el index 28f8cfa..4c98656 100755 --- a/init.el +++ b/init.el @@ -152,8 +152,6 @@ ;; If there is more than one, they won't work right. ) -(global-set-key (kbd "C-x C-f") 'helm-find-files) - (load-theme 'wombat) (provide 'init)