15 lines
328 B
Bash
15 lines
328 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "${DISTROBOX_ENTER_PATH}" ]; then
|
||
|
echo
|
||
|
echo "Run this in a distrobox container!"
|
||
|
exit 0;
|
||
|
fi
|
||
|
|
||
|
ansible-playbook toolbox.yml
|
||
|
|
||
|
distrobox-export --bin /usr/bin/bash-language-server
|
||
|
distrobox-export --bin /usr/bin/rpm_lsp_server
|
||
|
distrobox-export --bin /usr/bin/clangd
|
||
|
distrobox-export --bin ~/.local/bin/pylsp
|