aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-15 21:53:37 -0400
committerMountain Man <43313373+MountainMan1312@users.noreply.github.com>2023-05-15 21:53:37 -0400
commitb830566b73d8c6593254a6497d931a68aa86d8bb (patch)
tree21348d51bf15bfb7950bc61f889781eee4d1ed52 /init.el
parentAdd keybind to open agenda file (diff)
downloadmmosmacs-b830566b73d8c6593254a6497d931a68aa86d8bb.tar.gz
mmosmacs-b830566b73d8c6593254a6497d931a68aa86d8bb.tar.bz2
mmosmacs-b830566b73d8c6593254a6497d931a68aa86d8bb.zip
Use Projectile for project management
Diffstat (limited to 'init.el')
-rw-r--r--init.el22
1 files changed, 19 insertions, 3 deletions
diff --git a/init.el b/init.el
index 08af089..933eac8 100644
--- a/init.el
+++ b/init.el
@@ -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;; ---------------------------------------------------------------------