summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-helm.el~
blob: 0353c64c2daf57d0b1700cc62d8a99a48e492587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; helm --- Configuration

;;; Commentary:

;;; Code:

(require 'helm-config)

(global-set-key (kbd "M-x") 'helm-M-x)
(global-set-key (kbd "C-x C-p") 'helm-find-files)

(helm-mode 1)

(provide 'init-helm)
;;; init-helm ends here