From: Don Armstrong Date: Sun, 11 Dec 2016 21:35:29 +0000 (-0800) Subject: move helm configuration to don-configuration X-Git-Url: https://git.donarmstrong.com/?p=lib.git;a=commitdiff_plain;h=aa41a43de70c8cece456174835f82a905fc00f87 move helm configuration to don-configuration --- diff --git a/emacs_el/configuration/don-helm.org b/emacs_el/configuration/don-helm.org index b5df56b..6e3a28d 100644 --- a/emacs_el/configuration/don-helm.org +++ b/emacs_el/configuration/don-helm.org @@ -14,16 +14,6 @@ Require helm-config * Configuration #+BEGIN_SRC emacs-lisp :tangle don-helm.el - (helm-mode 1) - (define-key global-map [remap find-file] 'helm-find-files) - (define-key global-map [remap occur] 'helm-occur) - (define-key global-map [remap list-buffers] 'helm-buffers-list) - (define-key global-map [remap dabbrev-expand] 'helm-dabbrev) - (global-set-key (kbd "M-x") 'helm-M-x) - (unless (boundp 'completion-in-region-function) - (define-key lisp-interaction-mode-map [remap completion-at-point] 'helm-lisp-completion-at-point) - (define-key emacs-lisp-mode-map [remap completion-at-point] 'helm-lisp-completion-at-point)) - (add-hook 'kill-emacs-hook #'(lambda () (and (file-exists-p "$TMP") (delete-file "$TMP")))) #+END_SRC