diff options
author | bd <bdunahu@operationnull.com> | 2024-10-28 21:12:40 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-10-28 21:13:41 -0400 |
commit | 89889525ccf70b36ac06e5bf9294ecf7fd0066de (patch) | |
tree | 9413e969b24edcacadc1a1e087bcbe99080af029 /.config/emacs/modules/bd--project.el | |
parent | 1efe6886049b0143e55ccb77dc7d59966e9dd081 (diff) |
More cleanup and use-package
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 |