Skip to content

Instantly share code, notes, and snippets.

View vanvanni's full-sized avatar
💭
Working on open-source and new projects...

Joey de Vries vanvanni

💭
Working on open-source and new projects...
View GitHub Profile
@vanvanni
vanvanni / tree-to-md.sh
Created August 23, 2023 11:45
Simple but not perfect function to export your tree to a markdown code block
function mdtree () {
echo '```' > $1
tree -I 'node_modules|dist|build|.git|$1' --dirsfirst --prune >> $1
echo '```' >> $1
}
@vanvanni
vanvanni / autoexec.cfg
Last active February 12, 2023 00:21
CSGO - Auto Configuration
// Game Config
sensitivity "1.581"
zoom_sensitivity_ratio_mouse "1.04"
m_rawinput "1"
m_customaccel "0"
m_mouseaccel1 "0"
m_mouseaccel2 "0"
cl_showloadout "1"