dotfiles/bin/nvim-edit-fzf

13 lines
473 B
Bash
Executable file

#!/usr/bin/env bash
set -fe -o pipefail
if [ -n "$1" ]; then
_file=$(readlink -f "$@")
else
_git_root=$(git rev-parse --show-toplevel 2>/dev/null || pwd)
_store=$(echo "$_git_root" | sha1sum | cut -d ' ' -f 1)
_file=$( (fre --store_name "$_store" --sorted && fd --type f --hidden --follow --exclude .git . "$_git_root") | fzf )
fre --store_name "$_store" --add "$_file"
fi
nvim --server "$XDG_RUNTIME_DIR/nvim.sock" --remote "$_file" && tmux select-window -t1