Move helm setup to setup-helm.el

This commit is contained in:
laurensmiers 2016-04-02 16:54:13 +02:00
parent f197ef2483
commit 21401582d5
2 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,9 @@
;; Changed to "C-c h". Note: We must set "C-c h" globally, because we ;; 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. ;; 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-c h") 'helm-command-prefix)
(global-set-key (kbd "C-x C-f") 'helm-find-files)
(global-unset-key (kbd "C-x c")) (global-unset-key (kbd "C-x c"))
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) ; rebind tab to do persistent action (define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) ; rebind tab to do persistent action

View file

@ -152,8 +152,6 @@
;; If there is more than one, they won't work right. ;; 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) (load-theme 'wombat)
(provide 'init) (provide 'init)