Take first steos toward nvim lua config

This commit is contained in:
Andrew Tomaka 2022-09-21 22:02:30 -04:00
parent e090f64788
commit 4143a7971a
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
7 changed files with 261 additions and 29 deletions

View file

@ -25,6 +25,6 @@ for pane_info in $(tmux list-panes -a -F '#{pane_id}-#{pane_current_command}');
IFS=- read pane cmd <<< "$pane_info"
if [[ $cmd == "vim" || $cmd == "nvim" ]]; then
tmux send-keys -t $pane ":call ChangeBackground()" ENTER
tmux send-keys -t $pane ":lua ChangeBackground()" ENTER
fi
done