nixos/home/emacs/modules/custom-project-config.el

16 lines
416 B
EmacsLisp
Raw Normal View History

(setq project-switch-use-entire-map t
project-switch-commands
'((project-dired "Browse directory")
(project-find-file "Find file")
(project-find-regexp "Find regexp")
(project-find-dir "Find directory")
(project-eshell "Eshell")))
(use-package magit
:ensure t
:defer t
:config
(setq magit-clone-default-directory "~/Projects/"))
(provide 'custom-project-config)