Skip to content

Instantly share code, notes, and snippets.

/*
Cargo.toml
[package]
name = "candle-app"
version = "0.1.0"
edition = "2024"
[dependencies]
@Schr3da
Schr3da / config.toml
Last active April 8, 2026 21:25
Custom Helix editor configuration
theme = "base16_transparent" #"github_dark" #"github_light" #"ayu_light"
[editor]
cursorline = true
color-modes = true
auto-pairs = false
true-color = true
mouse = false
scrolloff = 10
bufferline = "multiple"
@Schr3da
Schr3da / languages.toml
Last active May 7, 2026 06:58
Helix language server config
[language-server.typescript-language-server]
command = "typescript-language-server"
args = ["--stdio"]
config.documentFormatting = false
[language-server.tailwindcss-language-server]
command = "tailwindcss-language-server"
args = ["--stdio"]
config = { tailwindCSS = { experimental = { classRegex = [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],