sbib improve and rg bool

This commit is contained in:
ackman678
2023-05-15 10:49:24 -04:00
parent 26d1974906
commit d328524cd9
14 changed files with 171 additions and 52 deletions

9
wm_spawn Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
if [ -n "$TMUX" ] ; then
# tmux session running
# tmux split-window -h "nvim \"$*\""
tmux split-window -h $EDITOR $1
else
# alacritty -e "nvim \"$*\""
alacritty -e bash -ic "$EDITOR $1" &
fi