mirror of
https://github.com/xHyroM/dotfiles.git
synced 2024-11-10 01:18:06 +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
|
"enabled": true
|
||||||
},
|
},
|
||||||
"EmoteCloner": {
|
"EmoteCloner": {
|
||||||
"enabled": false
|
"enabled": true
|
||||||
},
|
},
|
||||||
"Experiments": {
|
"Experiments": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
},
|
},
|
||||||
"ServerListIndicators": {
|
"ServerListIndicators": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
"mode": 2
|
"mode": 3
|
||||||
},
|
},
|
||||||
"Settings": {
|
"Settings": {
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
|
@ -447,7 +447,7 @@
|
||||||
"saveZoomValues": true,
|
"saveZoomValues": true,
|
||||||
"preventCarouselFromClosingOnClick": true,
|
"preventCarouselFromClosingOnClick": true,
|
||||||
"invertScroll": true,
|
"invertScroll": true,
|
||||||
"zoom": 2.005365853658537,
|
"zoom": 1,
|
||||||
"size": 100,
|
"size": 100,
|
||||||
"zoomSpeed": 0.27926829268292686,
|
"zoomSpeed": 0.27926829268292686,
|
||||||
"nearestNeighbour": false,
|
"nearestNeighbour": false,
|
||||||
|
@ -576,6 +576,6 @@
|
||||||
"authenticated": true,
|
"authenticated": true,
|
||||||
"url": "https://api.vencord.dev/",
|
"url": "https://api.vencord.dev/",
|
||||||
"settingsSync": true,
|
"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