From 506be7e7801e6d758e0c3c06a2ab74c80cee4bb1 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 26 Jul 2015 02:18:31 -0700 Subject: [PATCH] reindents of helm-projectile use-package --- dotfiles/emacs.d/init.el | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index f40ac448..5c82959d 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -1439,19 +1439,19 @@ window is active in the perspective." :commands projectile-persp-switch-project))) (use-package helm-projectile - :ensure t - :commands (helm-projectile-on) - :config - (progn - (helm-delete-action-from-source "Search in Project" helm-source-projectile-projects) - (defun imalison:switch-to-project-and-search (dir) - (let ((default-directory dir) - (projectile-require-project-root nil) - (helm-action-buffer "this-buffer-should-not-exist")) - (helm-projectile-ag))) - (helm-add-action-to-source "Search in Project" - 'imalison:switch-to-project-and-search - helm-source-projectile-projects))) + :ensure t + :commands (helm-projectile-on) + :config + (progn + (helm-delete-action-from-source "Search in Project" helm-source-projectile-projects) + (defun imalison:switch-to-project-and-search (dir) + (let ((default-directory dir) + (projectile-require-project-root nil) + (helm-action-buffer "this-buffer-should-not-exist")) + (helm-projectile-ag))) + (helm-add-action-to-source "Search in Project" + 'imalison:switch-to-project-and-search + helm-source-projectile-projects))) (use-package smex :ensure t