Files
emacs-personal/modules/init-projectile.el
Astounds 26d4b4df6f
All checks were successful
git-sync-with-mirror / test (push) Successful in 3m12s
git-sync-with-mirror / git-sync (push) Successful in 15s
testing
2026-02-28 00:30:35 -05:00

21 lines
525 B
EmacsLisp

;;; init-projectile.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; Projectile
(use-package projectile
:defer 0.3
:init
(setq projectile-enable-caching t
projectile-completion-system 'ivy
projectile-switch-project-action 'projectile-commander
projectile-kill-buffers-filter 'kill-all-buffer-p
projectile-auto-discover t
projectile-verbose nil)
:config
(projectile-mode +1))
(provide 'init-projectile)
;;; init-projectile.el ends here