diff options
Diffstat (limited to '')
-rw-r--r-- | fish/functions/bud.fish | 4 | ||||
-rw-r--r-- | fish/functions/notes.fish | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/fish/functions/bud.fish b/fish/functions/bud.fish new file mode 100644 index 0000000..13f67a9 --- /dev/null +++ b/fish/functions/bud.fish @@ -0,0 +1,4 @@ +function bud --wraps='cd ~/Budget/hledger' --description 'alias bud cd ~/Budget/hledger' + cd ~/Budget/hledger $argv + +end diff --git a/fish/functions/notes.fish b/fish/functions/notes.fish new file mode 100644 index 0000000..da0824c --- /dev/null +++ b/fish/functions/notes.fish @@ -0,0 +1,4 @@ +function notes --wraps='cd ~/Documents/Notes/' --description 'alias notes cd ~/Documents/Notes/' + cd ~/Documents/Notes/ $argv + +end |