Finish initial setup of tmux-sessionizer

This commit is contained in:
2025-01-18 14:14:54 -06:00
parent cb8f07a711
commit 201cd90ee8
10 changed files with 67 additions and 66 deletions

2
runs/fzf Executable file
View File

@ -0,0 +1,2 @@
#!/bin/zsh
brew install fzf

View File

@ -1,10 +1,10 @@
#!/bin/zsh
install_command="sudo apt install"
local install_command="sudo apt install"
[[ -x $(which brew) ]] && install_command="brew install"
neovim_dir=$HOME/.local/build/neovim
neovim_version="v0.10.3"
local neovim_dir=$HOME/.local/build/neovim
local neovim_version="v0.10.3"
[ ! -z $NVIM_VERSION ] && neovim_version="$NVIM_VERSION"
echo "neovim_version: \"$neovim_version\""