2021-02-21 02:59:11 +00:00
|
|
|
;; -*- lexical-binding: t; -*-
|
|
|
|
|
2021-02-20 11:40:03 +00:00
|
|
|
;; Project management
|
|
|
|
(use-package projectile
|
2024-08-19 16:02:22 +00:00
|
|
|
:demand
|
|
|
|
:autoload (projectile-project-root)
|
|
|
|
:general
|
|
|
|
(leader-map "p" `(,projectile-command-map :which-key "projectile"))
|
2021-02-20 11:40:03 +00:00
|
|
|
:config
|
2024-08-19 16:02:22 +00:00
|
|
|
(projectile-mode 1))
|
2021-02-20 11:40:03 +00:00
|
|
|
|
2021-02-21 19:47:53 +00:00
|
|
|
;; Ripgrep integration
|
|
|
|
(use-package projectile-ripgrep
|
2023-04-27 18:56:06 +00:00
|
|
|
:after projectile)
|
2021-02-21 19:47:53 +00:00
|
|
|
|
2021-02-20 11:40:03 +00:00
|
|
|
(provide 'init-projects)
|