aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-projectile.el
blob: a8fc46ee91437c5c428cde4fa5b1e91e7f69b2fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;; 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