diff options
author | johannst <johannes.stoelp@gmail.com> | 2019-08-24 13:57:20 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2019-08-24 13:57:20 +0200 |
commit | 52019030f2c31f78686e308a30dcaec7e5d4178d (patch) | |
tree | 54611194629094eb7e9fe74d7f02572eab8b8f56 /emacs.el | |
parent | 829ec85f59f45cfa35811bdfdfa03f5e0f1d59c2 (diff) | |
download | dotfiles-52019030f2c31f78686e308a30dcaec7e5d4178d.tar.gz dotfiles-52019030f2c31f78686e308a30dcaec7e5d4178d.zip |
added helm-projectile to emacs config
Diffstat (limited to 'emacs.el')
-rw-r--r-- | emacs.el | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -61,9 +61,16 @@ (use-package helm :ensure t :config + (define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) + (define-key helm-map (kbd "C-z") 'helm-select-action) (helm-mode t) ) +;; helm +(use-package helm-projectile + :ensure t + ) + ;; magit (use-package magit :ensure t |