Skip to content

Instantly share code, notes, and snippets.

View lucas-burdell's full-sized avatar
:shipit:
ship it

Lucas Burdell lucas-burdell

:shipit:
ship it
View GitHub Profile
@lucas-burdell
lucas-burdell / reset-sound-levels.bat
Created January 13, 2021 00:05
Reset windows volume mixer settings
@ECHO OFF
ECHO Reset Volume Mixer Settings...
NET STOP Audiosrv
NET STOP AudioEndpointBuilder
REG DELETE "HKCU\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" /F
REG ADD "HKCU\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore"
@lucas-burdell
lucas-burdell / settings.json
Created November 14, 2019 04:50
My VSCode Settings
{
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"workbench.iconTheme": "vscode-icons",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.autoSave": "onWindowChange",
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "bounded",
"editor.gotoLocation.multiple": "gotoAndPeek",
@lucas-burdell
lucas-burdell / .gitconfig
Last active June 3, 2022 14:08
My Git Configurations
[core]
compression = 1
editor = vim
[diff "astextplain"]
textconv = astextplain
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true