summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--project.el
blob: 5828abd6e4dd4aefda5c23826971921a179ea798 (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 ends here