summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--project.el
blob: 243e3cd1b1ab24835a8fde46d1a873cfb9c8f80a (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
  :config
  (setopt 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