This commit is contained in:
2025-10-18 06:26:48 -03:00
parent c4bbee1f24
commit f1888d9c0f
4 changed files with 54 additions and 59 deletions

17
wezterm/.wezterm.lua Normal file
View File

@@ -0,0 +1,17 @@
local wezterm = require 'wezterm'
return {
font = wezterm.font_with_fallback({"JetBrains Mono", "Iosevka Term"}),
font_size = 12.0,
window_background_opacity = 0.90,
macos_window_background_blur = 20,
color_scheme = "Builtin Dark",
window_decorations = "RESIZE",
enable_tab_bar = false,
use_resize_increments = false,
colors = {
background = "#0C0F14",
foreground = "#E0E1DD",
cursor_bg = "#6EE2FF",
cursor_fg = "#0C0F14",
},
}