home manager

This commit is contained in:
Till 2024-06-25 11:49:44 +02:00
parent 7efd15464e
commit d067c0fcdb
6 changed files with 17 additions and 6 deletions

View file

@ -60,7 +60,11 @@
end
function note --description 'Create a new note'
nvim -c "call CreateNote('$argv')"
if count $argv > /dev/null
nvim -c "call CreateNote('$argv')"
else
nvim ~/notes/(ls ~/notes/ | fzf)
end
end
function lipsum --description 'Create placeholder text'