2 Commits

Author SHA1 Message Date
6616efec54 update gitconfig to use personal email for specific paths 2026-06-01 11:58:06 -04:00
369966726d Changes returning to solo.io
1. Add ghostty config
2. Revise the nvim-lsp config to remedy deprecation warnings
3. Add back solo.zsh with enhancements
2026-06-01 11:40:47 -04:00
3 changed files with 1 additions and 35 deletions

View File

@@ -19,8 +19,3 @@ lines = 115
[window.position] [window.position]
x = 1550 x = 1550
y = 0 y = 0
[keyboard]
bindings = [
{ key = "Return", mods = "Shift", chars = "\n" }
]

View File

@@ -9,7 +9,7 @@ echo "PKGUPD: ${PKGUPD}"
echo "PKGINST: ${PKGINST}" echo "PKGINST: ${PKGINST}"
# Install zsh, neovim, ripgrep, fd # Install zsh, neovim, ripgrep, fd
[[ $PKGINST != '' ]] && $PKGUPD && $PKGINST curl tmux zsh ripgrep fd-find fzf tree [[ $PKGINST != '' ]] && $PKGUPD && $PKGINST curl tmux zsh ripgrep fd-find fzf
# Install neovim # Install neovim
pushd /tmp || true pushd /tmp || true

View File

@@ -1,29 +0,0 @@
cdf_preview() {
if [ -d $1 ]; then
tree -L 1 $1
else
cat $1
fi
}
# cdf - cd with fuzzy finder
# Usage: cdf [path]
cdf() {
local fd_options fzf_options target
fd_options=(
--hidden
)
fzf_options=(
# --preview='echo {}'
--preview='([[ -d {} ]] && tree -L 1 {}) || ([[ -L {} ]] && ls -al {}) || cat {}'
--bind=ctrl-space:toggle-preview
--exit-0
)
target="$(fdfind . "${1:-.}" "${fd_options[@]}" | fzf "${fzf_options[@]}")"
([[ -f "$target" ]] || [[ -L "$target" ]]) && target="${target%/*}"
cd "$target" || return 1
}