backups and fish functions

This commit is contained in:
Noah Masur
2025-01-31 15:40:41 -05:00
parent b123ae3e69
commit e1f987e83b
13 changed files with 225 additions and 167 deletions

View File

@ -0,0 +1,8 @@
if test -n "$filename"
vim "$NOTES_PATH/$filename.md"
else
set file (ls $NOTES_PATH | fzf)
if [ $status -eq 0 ]
vim "$NOTES_PATH/$file"
end
end