This commit is contained in:
grngxd 2025-06-18 19:19:39 +01:00
commit 8d15fa9731
9 changed files with 287 additions and 0 deletions

21
mix.hjson.example Normal file
View file

@ -0,0 +1,21 @@
default: {
packages: [
{
id: "wez.wezterm"
version: "20240203-110809-5046fc22"
config: [
{
type: "raw"
path: "~/.wezterm.lua"
data:
'''
local wezterm = require 'wezterm'
local config = {}
config.color_scheme = 'Batman'
return config
'''
}
]
}
]
}