replace manual home dir with config option

This commit is contained in:
Noah Masur
2022-06-20 08:39:41 -04:00
parent fdfc66c7ad
commit 5a43ad997f
7 changed files with 15 additions and 23 deletions

View File

@ -9,8 +9,8 @@
projects = {
description = "Jump to a project";
body = ''
set projdir (ls /home/${config.user}/dev/personal | fzf)
and cd /home/${config.user}/dev/personal/$projdir
set projdir (ls ${config.homePath}/dev/personal | fzf)
and cd ${config.homePath}/dev/personal/$projdir
and commandline -f execute
'';
};