diff options
| -rw-r--r-- | init.el | 22 |
1 files changed, 19 insertions, 3 deletions
| @@ -327,9 +327,10 @@ | |||
| 327 | 327 | ||
| 328 | 328 | ||
| 329 | ;; --------------------------------------------------------------------- | 329 | ;; --------------------------------------------------------------------- |
| 330 | ;;; File Management | 330 | ;;; File, project, & repository management |
| 331 | ;; ---------------- | 331 | ;; --------------------------------------- |
| 332 | ;; Everything to do with file or directory management goes here. | 332 | ;; This section contains everything to do with file, project, & repo |
| 333 | ;; management. This includes `magit' and `projectile'. | ||
| 333 | ;; --------------------------------------------------------------------- | 334 | ;; --------------------------------------------------------------------- |
| 334 | 335 | ||
| 335 | ;; --------------------------------- | 336 | ;; --------------------------------- |
| @@ -366,6 +367,21 @@ | |||
| 366 | (setq create-lockfiles nil) | 367 | (setq create-lockfiles nil) |
| 367 | 368 | ||
| 368 | 369 | ||
| 370 | ;; --------------------------------- | ||
| 371 | ;; Project management | ||
| 372 | ;; ------------------ | ||
| 373 | ;; `Projectile' provides features | ||
| 374 | ;; for operating on a project level. | ||
| 375 | ;; --------------------------------- | ||
| 376 | |||
| 377 | (use-package projectile | ||
| 378 | :straight t | ||
| 379 | :config | ||
| 380 | (projectile-mode) | ||
| 381 | (setq projectile-project-search-path '("~/Projects")) | ||
| 382 | :bind-keymap ("C-c p" . projectile-command-map)) | ||
| 383 | |||
| 384 | |||
| 369 | 385 | ||
| 370 | 386 | ||
| 371 | ;; --------------------------------------------------------------------- | 387 | ;; --------------------------------------------------------------------- |