diff options
Diffstat (limited to '.config/emacs/modules/bd--project.el')
-rw-r--r-- | .config/emacs/modules/bd--project.el | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.config/emacs/modules/bd--project.el b/.config/emacs/modules/bd--project.el new file mode 100644 index 0000000..5828abd --- /dev/null +++ b/.config/emacs/modules/bd--project.el @@ -0,0 +1,18 @@ +;;; -*- lexical-binding: t; -*- +;;; Commentary: +;;; Code: + + +(use-package project + :defer t + :custom + (project-switch-commands + '((project-find-file "Find file") + (project-find-regexp "Find regexp") + (project-find-dir "Find directory") + (magit-project-status "Magit") + (project-shell "Shell")))) + + +(provide 'bd--project) +;;; bd-project ends here |