summaryrefslogtreecommitdiff
path: root/emacs/inits/15-project-mgmt.el
blob: 8197f990553171a5c0c76d3af9a6d5a3334cedd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
;; Time-stamp: <2019-04-09 23:20:17 (tslil@bison)>

(use-package projectile
  :ensure t
  :bind (("C-c p" . projectile-switch-project)
         ("C-c f" . projectile-find-file-dwim))
  :config
  (projectile-mode 1)

  (setq projectile-completion-system 'ivy
        projectile-mode-line-prefix ""
        projectile-mode-line-function '(lambda ()
                                         (format " ¶[%s]"
                                                 (projectile-project-name)))))

(use-package magit
  :ensure t
  :bind (("C-x g" . magit-status)))