about summary refs log tree commit diff
path: root/tools
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-16T10·04+0000
committerVincent Ambo <tazjin@google.com>2019-12-16T10·04+0000
commite5839306f8fdabe2e754b74aaca0a9210eedbed2 (patch)
tree37930eb660eb83b48936b7e8244e3e3d8d326faa /tools
parent6108759688a496c5ea05ae13afb6eba9dcdb1bc9 (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.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el
index 06fe707921..a23a16fca5 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)