summary refs log tree commit diff
path: root/emacs/custom
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--emacs/custom/fcuny-navigation.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/emacs/custom/fcuny-navigation.el b/emacs/custom/fcuny-navigation.el
index 1268185..2258b98 100644
--- a/emacs/custom/fcuny-navigation.el
+++ b/emacs/custom/fcuny-navigation.el
@@ -2,6 +2,23 @@
 
 (setq help-window-select t)
 
+(use-package projectile
+  :diminish projectile-mode
+  :ensure t
+  :bind-keymap ("C-c p" . projectile-command-map)
+  :after (ivy)
+  :config
+  (setq projectile-known-projects-file
+        (expand-file-name "projectile-bookmarks.eld" fcuny/path-emacs-var))
+  (setq projectile-completion-system 'ivy)
+  (projectile-mode))
+
+(use-package counsel-projectile
+  :ensure t
+  :after (projectile ivy)
+  :config
+  (counsel-projectile-mode 1))
+
 (use-package bookmark
   :custom
   (bookmark-default-file (expand-file-name "bookmarks" fcuny/path-emacs-var))