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 July 13, 2025 23:08
Opinionated biome.js config. Works well for both frontend and backend services.
{
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"linter": {
@GaussianWonder
GaussianWonder / theme.ron
Created August 17, 2025 11:24
gitui theme for sainnhe/gruvbox-material hard dark style
(
selected_tab: Some("#e78a4e"),
command_fg: Some("#d4be98"),
selection_bg: Some("#504945"),
selection_fg: Some("#ddc7a1"),
use_selection_fg: true,
cmdbar_bg: Some("#1d2021"),
cmdbar_extra_lines_bg: Some("#282828"),
disabled_fg: Some("#9C938E"),
diff_line_add: Some("#a9b665"),