Skip to content

Commit

Permalink
Use emacs-helm
Browse files Browse the repository at this point in the history
  • Loading branch information
okkez committed Aug 1, 2012
1 parent 5f79c4e commit 004bd15
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
23 changes: 23 additions & 0 deletions emacs-config/config-helm.el
@@ -0,0 +1,23 @@
(eval-when-compile (require 'cl))
(require 'helm)
(require 'helm-buffers)
(require 'helm-files)

(defun my-helm-mini ()
"My Helm mini source"
(interactive)
(helm-other-buffer '(helm-c-source-buffers-list
helm-c-source-recentf
helm-c-source-files-in-current-dir
helm-c-source-buffer-not-found)
"*my helm mini*"))

(helm-mode 1)
(custom-set-variables
'(helm-command-map-prefix-key "\C-z"))
;(define-key helm-command-map (kbd "C-x C-f") 'helm-filelist+)
(define-key global-map (kbd "C-;") 'my-helm-mini)
(define-key global-map (kbd "M-x") 'helm-M-x)
;(define-key global-map (kbd "C-x C-f") 'helm-filelist+)
(define-key global-map (kbd "C-x b") 'my-helm-mini)

6 changes: 6 additions & 0 deletions emacs-config/recipes/helm.rcp
@@ -0,0 +1,6 @@
(:name helm
:description "Helm is incremental completion and selection narrowing framework for Emacs."
:type git
:url "https://github.com/emacs-helm/helm.git"
:load-path (".")
:features helm-config)
2 changes: 1 addition & 1 deletion emacs-config/start.el
Expand Up @@ -11,7 +11,6 @@ Assume that the filename should be config-NAME.el."
(defvar my-emacs-pre-config '("path" "key" "el-get"))
(defvar my-emacs-misc-config
'("auto-complete"
"anything"
;"auto-insert-tkld"
;"auto-save"
"base"
Expand All @@ -28,6 +27,7 @@ Assume that the filename should be config-NAME.el."
"key-chord"
"hiki"
"haml-mode"
"helm"
"html-mode"
;"ibuffer"
;"iswitchb"
Expand Down

0 comments on commit 004bd15

Please sign in to comment.