mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +01:00
12 lines
188 B
Text
12 lines
188 B
Text
|
#!/bin/bash
|
||
|
# bp
|
||
|
# creates folder in /tmp with bun init a.k.a bun playground
|
||
|
|
||
|
BP_TEMP_PATH=$(mktemp -d --suffix=-bun.playground)
|
||
|
|
||
|
cd $BP_TEMP_PATH
|
||
|
bun init -y
|
||
|
nvim .
|
||
|
|
||
|
rm -rf $BP_TEMP_PATH
|