diff options
| author | bh <qn+git@excalibur.computer> | 2026-04-28 14:11:04 +0800 |
|---|---|---|
| committer | bh <qn+git@excalibur.computer> | 2026-04-28 14:11:04 +0800 |
| commit | fdacb2111ae1043d061151d06e62da5af9e76ba8 (patch) | |
| tree | 6b25c8a85b518cf30c336046201dd04cce82be0f /config/projectile.el | |
| parent | ee05e6544cd350f7ef999f4fcc265ee4cd55ddad (diff) | |
Fresh Start!
Diffstat (limited to 'config/projectile.el')
| -rw-r--r-- | config/projectile.el | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/config/projectile.el b/config/projectile.el deleted file mode 100644 index 4e9ab71..0000000 --- a/config/projectile.el +++ /dev/null @@ -1,24 +0,0 @@ -;; Projectile - Project management - -(use-package projectile - :config - ;; Enable projectile globally - (projectile-mode +1) - - ;; Set project search path (where your projects live) - (setq projectile-project-search-path '("~/projects" "~/.config")) - - ;; Cache project files for better performance - (setq projectile-enable-caching t) - - ;; Keybindings - :bind-keymap - ("C-c p" . projectile-command-map) - - :bind - ; (("C-c p f" . projectile-find-file) ;; Find file in project - ; ("C-c p p" . projectile-switch-project) ;; Switch between projects - ; ("C-c p s" . projectile-ripgrep))) ;; Search in project - ) - -(provide 'projectile) |