From 8b84499b3675eae57fd4dc79ecb5356ab8decd94 Mon Sep 17 00:00:00 2001 From: Shaun Setlock Date: Tue, 1 Jul 2025 21:22:46 -0400 Subject: [PATCH] Add fish function for opening nvim at home directory. --- fish/functions/vh.fish | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 fish/functions/vh.fish diff --git a/fish/functions/vh.fish b/fish/functions/vh.fish new file mode 100644 index 0000000..6faeff6 --- /dev/null +++ b/fish/functions/vh.fish @@ -0,0 +1,5 @@ +# Defined in - @ line 1 +function vh --wraps='nvim ~/' --description 'alias vh=nvim ~/' + nvim ~/ + +end