diff options
| author | tslil clingman <> | 2019-09-11 19:18:14 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2019-09-11 19:18:14 -0400 |
| commit | ac1a4884d03fc0495c773500d8a13f84b695fa43 (patch) | |
| tree | 29e5ec49e0ce957d80d8f11a155b47840c74f488 /emacs/inits/15-project-mgmt.el | |
Init
Diffstat (limited to 'emacs/inits/15-project-mgmt.el')
| -rw-r--r-- | emacs/inits/15-project-mgmt.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/emacs/inits/15-project-mgmt.el b/emacs/inits/15-project-mgmt.el new file mode 100644 index 0000000..8197f99 --- /dev/null +++ b/emacs/inits/15-project-mgmt.el @@ -0,0 +1,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))) |
