diff options
| author | Craig Jennings <c@cjennings.net> | 2025-11-15 12:12:00 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-11-15 12:12:00 -0600 |
| commit | 5d127faff03ec6961d3d578b9e4d2050686ea456 (patch) | |
| tree | e3923faa55949de54baf49e761000f60ab5310b3 /modules | |
| parent | 158643275b985d5876e11db2e8c4c1b7e27b37b8 (diff) | |
feat(dirvish): Add dropbox shortcut and fix directory paths
- Add "db" shortcut for ~/documents/dropbox/
- Update "lx" path from ~/lectures/ to ~/archive/lectures/
- Rename "sv" to "spv" and update path to ~/sync/phone/videos/
- Fix "tg" path to use org-dir instead of sync-dir
All shortcuts now point to existing directories.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dirvish-config.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/dirvish-config.el b/modules/dirvish-config.el index b10c97f0..a2d183e6 100644 --- a/modules/dirvish-config.el +++ b/modules/dirvish-config.el @@ -229,8 +229,9 @@ regardless of what file or subdirectory the point is on." ("dr" ,(concat org-dir "/drill/") "drill files") ("dt" ,(concat dl-dir "/torrents/complete/") "torrents") ("dx" "~/documents/" "documents") + ("db" "~/documents/dropbox/" "dropbox") ("gd" "~/documents/google-drive/" "google-drive") - ("lx" "~/lectures/" "lectures") + ("lx" "~/archive/lectures/" "lectures") ("mb" "/media/backup/" "backup directory") ("mx" "~/music/" "music") ("pD" "~/projects/documents/" "project documents") @@ -247,8 +248,8 @@ regardless of what file or subdirectory the point is on." ("sx" ,sync-dir "sync directory") ("so" ,(concat sync-dir "/org/") "sync/org directory") ("sr" ,(concat sync-dir "/recordings/") "sync/recordings directory") - ("sv" ,(concat sync-dir "/videos/") "sync/videos directory") - ("tg" ,(concat sync-dir "/text.games/") "text games") + ("spv" ,(concat sync-dir "/phone/videos/") "sync/phone/videos directory") + ("tg" ,(concat org-dir "/text.games/") "text games") ("vr" ,video-recordings-dir "video recordings directory") ("vx" ,videos-dir "videos"))) :config |
