fix(emacs.d): Set correct magit-repository-directories path
This was set to my old home directory name from a different machine and I had low-key been wondering why it didn't work, but not enough to go do something about it.
This commit is contained in:
parent
6108759688
commit
e5839306f8
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@
|
|||
|
||||
(use-package magit
|
||||
:bind ("C-c g" . magit-status)
|
||||
:config (setq magit-repository-directories '(("/home/vincent/projects" . 2))))
|
||||
:config (setq magit-repository-directories '(("/home/tazjin/projects" . 2)
|
||||
("/home/tazjin/depot" . 0))))
|
||||
|
||||
(use-package password-store)
|
||||
(use-package pg)
|
||||
|
|
Loading…
Reference in a new issue