Changes returning to solo.io (#1)

1. Add ghostty config
2. Revise the nvim-lsp config to remedy deprecation warnings
3. Add back solo.zsh with enhancements

Reviewed-on: #1
Co-authored-by: Jacob Bohanon <jacobbohanon@gmail.com>
Co-committed-by: Jacob Bohanon <jacobbohanon@gmail.com>
This commit was merged in pull request #1.
This commit is contained in:
2026-06-01 12:05:40 -04:00
committed by jacob
parent 5341a19141
commit c03ee8019e
7 changed files with 171 additions and 74 deletions

View File

@@ -5,7 +5,7 @@ url=$1
# make sure we have a valid git url. only works with http/s
regex='^https?://[^/]+/[^/]+/[^/]+(\.git)?$'
if [[ ! $"url" =~ $regex ]]; then
if [[ ! "$url" =~ $regex ]]; then
echo "echo \"$url does not match regex\""
exit 1
fi