diff --git a/init.el b/init.el index 29b891d..2f5af51 100644 --- a/init.el +++ b/init.el @@ -487,6 +487,21 @@ :after (company)) +;;==================== +;; Projectile (Project Interaction) +;;==================== + +;; Bindings: +;; [ C-c p ... ] -> Projectile key map prefix + +;; Load Projectile +(use-package projectile + :ensure + t + :config + (define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map) + (projectile-mode t)) + ;;==================== ;; Smex (M-x Autocompletion) ;;====================