1

Add Projectile for project management

This commit is contained in:
Jessie Hildebrandt 2020-07-16 19:48:55 -04:00
parent 40bfe29621
commit 957a887162

15
init.el
View File

@ -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)
;;====================