blob: f5b1c0974e0dc33757f073f7ccaa7e19a392862f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.el ends here
|