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

;;; Commentary:

;;; Code:

(require-package 'helm)
(require 'helm-config)

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

(helm-mode 1)

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