summaryrefslogtreecommitdiff
path: root/config/projectile.el
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-05-17 20:17:44 +0100
committerSam Light <samlight1994@gmail.com>2025-05-17 20:17:44 +0100
commit0b48b7d84872ea328ff942d2a2f786efc3319e82 (patch)
tree1d83b715d124d0a812df6669ac8e8ee4a27a5d26 /config/projectile.el
Inital commit
Diffstat (limited to 'config/projectile.el')
-rw-r--r--config/projectile.el14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/projectile.el b/config/projectile.el
new file mode 100644
index 0000000..2c34633
--- /dev/null
+++ b/config/projectile.el
@@ -0,0 +1,14 @@
+;; -*- lexical-binding: t; -*-
+(use-package projectile
+ :ensure t
+ :init
+ (projectile-mode +1)
+ :bind
+ (:map projectile-mode-map
+ ("s-p" . projectile-command-map)
+ ("C-c p" . projectile-command-map)))
+
+(use-package helm-projectile
+ :ensure t
+ :config
+ (helm-projectile-on))