diff --git a/shells/fish/functions/gitignore_fisher_functions.fish b/shells/fish/functions/gitignore_fisher_functions.fish new file mode 100644 index 0000000..a9df736 --- /dev/null +++ b/shells/fish/functions/gitignore_fisher_functions.fish @@ -0,0 +1,11 @@ +function gitignore_fisher_functions + set functions_path ~/.config/fish/functions/ + if not test -e $functions_path + echo "Functions directory not found" + else + cd $functions_path + find * -type l > .gitignore + echo "fisher.fish" >> .gitignore + cd - + end +end