mirror of
https://github.com/Xevion/dotfiles.git
synced 2026-01-31 00:24:06 -06:00
refactor: replace fzf.fish modify script with Fish function wrapper
Replace Bun-based modify_ script with cleaner Fish function override that intercepts fzf_configure_bindings at load time to disable CTRL+R binding. Also fix Fisher update script to run_onchange for proper chezmoi behavior.
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Update Fisher plugins
|
||||
|
||||
if ! command -v fish &> /dev/null; then
|
||||
echo "[err] Fish shell not installed - skipping fisher update"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
if ! fish -c "type -q fisher" &> /dev/null; then
|
||||
echo "[err] Fisher not installed - skipping fisher update"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Updating Fisher plugins..."
|
||||
fish -c "fisher update" && echo "[ok] Fisher plugins updated" || echo "[err] Fisher update failed"
|
||||
Reference in New Issue
Block a user