Merge branch 'master' of ssh://git@git.john.me.tz:223/jpm/scripts.git

This commit is contained in:
John Mertz 2023-01-09 12:10:56 -05:00
commit da74bae7c1
1 changed files with 8 additions and 0 deletions

8
distrobox/toolbox/nvim Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# distrobox_binary
# name: toolbox
if [ ! -f /run/.containerenv ] && [ ! -f /.dockerenv ]; then
/usr/bin/distrobox-enter -n toolbox -- /usr/bin/nvim "$@"
else
/usr/bin/nvim "$@"
fi