mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-12 18:28:07 +01:00
bp and zig bin
This commit is contained in:
parent
6a599b660f
commit
609220d543
3 changed files with 19 additions and 4 deletions
|
@ -115,7 +115,7 @@
|
|||
"enabled": true
|
||||
},
|
||||
"EmoteCloner": {
|
||||
"enabled": false
|
||||
"enabled": true
|
||||
},
|
||||
"Experiments": {
|
||||
"enabled": true,
|
||||
|
@ -317,7 +317,7 @@
|
|||
},
|
||||
"ServerListIndicators": {
|
||||
"enabled": true,
|
||||
"mode": 2
|
||||
"mode": 3
|
||||
},
|
||||
"Settings": {
|
||||
"enabled": true,
|
||||
|
@ -447,7 +447,7 @@
|
|||
"saveZoomValues": true,
|
||||
"preventCarouselFromClosingOnClick": true,
|
||||
"invertScroll": true,
|
||||
"zoom": 2.005365853658537,
|
||||
"zoom": 1,
|
||||
"size": 100,
|
||||
"zoomSpeed": 0.27926829268292686,
|
||||
"nearestNeighbour": false,
|
||||
|
@ -576,6 +576,6 @@
|
|||
"authenticated": true,
|
||||
"url": "https://api.vencord.dev/",
|
||||
"settingsSync": true,
|
||||
"settingsSyncVersion": 1692787884974
|
||||
"settingsSyncVersion": 1692863549373
|
||||
}
|
||||
}
|
11
.local/bin/bp
Executable file
11
.local/bin/bp
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/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
|
4
.local/bin/zig
Executable file
4
.local/bin/zig
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Use zigd - version managing
|
||||
zigd $@
|
Loading…
Reference in a new issue