Skip to content

Instantly share code, notes, and snippets.

View GaussianWonder's full-sized avatar
🗿

Teodor GaussianWonder

🗿
View GitHub Profile
@GaussianWonder
GaussianWonder / komorebi.ahk
Created September 28, 2024 08:22
Komorebi ahk config. Auto start and close.
#Requires AutoHotkey v2.0.2
#SingleInstance Force
Komorebic(cmd) {
RunWait(format("komorebic.exe {}", cmd), , "Hide")
}
; Start komorebi if not started already
if !ProcessExist("komorebi.exe")
Komorebic("start")
@GaussianWonder
GaussianWonder / biome.json
Last active March 10, 2025 14:04
Opinionated biome.js config. Works well for both frontend and backend services.
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"complexity": {