diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-16T10·04+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-16T10·04+0000 |
commit | e5839306f8fdabe2e754b74aaca0a9210eedbed2 (patch) | |
tree | 37930eb660eb83b48936b7e8244e3e3d8d326faa /tools | |
parent | 6108759688a496c5ea05ae13afb6eba9dcdb1bc9 (diff) |
fix(emacs.d): Set correct magit-repository-directories path r/163
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.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/emacs/config/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el index 06fe707921a4..a23a16fca550 100644 --- a/tools/emacs/config/init.el +++ b/tools/emacs/config/init.el @@ -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) |