aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-projectile.el
blob: 0d6dd62241c985fb6f2646710ed8db177c103630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
;;; init-projectile.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:
;; Projectile
(use-package projectile
  :ensure t
  :init
  (projectile-mode))

(provide 'init-projectile)
;;; init-projectile.el ends here