X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=emacs_el%2Fconfiguration%2Fdon-helm.org;h=6e3a28dde71b61ec00d9ef6d49cc16074003b7f6;hb=72f81743a4a798e3e84892631aa08229e74de27c;hp=b5df56b4a71afd7b0cb91fa92089a10f84333ee6;hpb=9c23970f87981689b9e932fd7aa29b66ef1e0a5f;p=lib.git 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