Skip to content

Instantly share code, notes, and snippets.

View RivenSkaye's full-sized avatar
😅
Hella busy with work, but trying to find more time for other stuff

Martin RivenSkaye

😅
Hella busy with work, but trying to find more time for other stuff
View GitHub Profile
@RivenSkaye
RivenSkaye / vsc-install.sh
Last active November 26, 2025 11:41
Short script to install my basic set of vsc extensions
#!/usr/bin/env bash
if [[ command -v codium > /dev/null 2>&1 ]] then
alias code="codium"
fi
code --install-extension adamwalzer.scss-lint
code --install-extension astral-sh.ty
code --install-extension bierner.markdown-mermaid
code --install-extension bpruitt-goddard.mermaid-markdown-syntax-highlighting
code --install-extension charliermarsh.ruff
@RivenSkaye
RivenSkaye / lotus_dark.json
Created November 24, 2025 13:25
Lotus Dark inspired windows terminal theme color. Toss this into the array behind the `schemes` key
{
"background": "#161616",
"black": "#161616",
"blue": "#D97645",
"brightBlack": "#393939",
"brightBlue": "#FC9867",
"brightCyan": "#78DCE8",
"brightGreen": "#A9DC76",
"brightPurple": "#AB9DF2",
"brightRed": "#FF6188",