[format] lua via stylua

This commit is contained in:
Daveanand Mannie
2026-01-12 11:38:14 -05:00
parent 6720c8c765
commit 2f9cbf29fa
15 changed files with 187 additions and 192 deletions

View File

@@ -2,15 +2,15 @@
local wezterm = require("wezterm")
local config = wezterm.config_builder()
-- workspace dir default
config.default_cwd = os.getenv("HOMEPATH") or os.getenv("HOME").. "/workspace"
config.default_cwd = os.getenv("HOMEPATH") or os.getenv("HOME") .. "/workspace"
-- default term prog can be changed with cli args
if os.getenv("pwsh") then
config.default_prog = { "pwsh" }
config.default_prog = { "pwsh" }
end
--styles
config.harfbuzz_features = { "calt=1", "clig=1", "liga=1" }
config.font = wezterm.font("JetBrainsMono NF", { weight = "Bold" , style = "Italic"})
config.font = wezterm.font("JetBrainsMono NF", { weight = "Bold", style = "Italic" })
-- config.font_size = 14
config.color_scheme = "Sakura"
config.window_padding = {
@@ -20,7 +20,7 @@ config.window_padding = {
bottom = "0cell",
}
-- pane
config.colors = { split = '#E858F5' }
config.colors = { split = "#E858F5" }
config.inactive_pane_hsb = {
saturation = 0.7,
brightness = 0.8,