summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRavi R Kiran <aine.marina@gmail.com>2013-12-01 04:58:27 (GMT)
committerRavikiran Rajagopal <aine.marina@gmail.com>2013-12-01 04:58:27 (GMT)
commit6551ffcb988aa7b1f6432e3ae4ffb2b818b6a96f (patch)
tree46116421f522632f3409281262bcb04c285461f2
parent4c6ff7f8290a57e5060bdda7e4b60c523461583d (diff)
downloaddotemacs-6551ffcb988aa7b1f6432e3ae4ffb2b818b6a96f.zip
dotemacs-6551ffcb988aa7b1f6432e3ae4ffb2b818b6a96f.tar.gz
dotemacs-6551ffcb988aa7b1f6432e3ae4ffb2b818b6a96f.tar.bz2
Support for projects
-rw-r--r--ravi-init-files.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/ravi-init-files.el b/ravi-init-files.el
index 0a2d2a1..02e6ed7 100644
--- a/ravi-init-files.el
+++ b/ravi-init-files.el
@@ -113,5 +113,17 @@ not exist, it is not added to the filecache."
;; Make backups of files, even when they're in version control
(setq vc-make-backup-files t)
+;; Git/svn/etc. projects
+(use-package projectile
+ :init
+ (use-package pkg-info
+ :ensure t
+ )
+ :config
+ (projectile-global-mode)
+ :diminish projectile-mode
+ :ensure t
+ )
+
(provide 'ravi-init-files)
;;; ravi-init-files.el ends here