Skip to content

Instantly share code, notes, and snippets.

@Schr3da
Schr3da / config.toml
Last active June 11, 2025 09:07
Custom Helix editor configuration
theme = "base16_transparent" #"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 September 5, 2024 11:01
Helix language server config
[[language]]
name = "typescript"
scope = "source.ts"
injection-regex = "(ts|typescript)"
language-servers = [{except-features = ["format"], name = "typescript-language-server"}, "tailwindcss-react", "eslint"]
roots = ["tailwind.config.js","tailwind.config.cjs", ".prettierrc.json", ""]
file-types = ["ts", "mts", "cts"]
formatter = { command = 'prettier', args = ["--stdin-filepath", "file.ts"] }
auto-format = true