This commit is contained in:
2025-09-25 16:14:28 -04:00
parent fcec9f0c19
commit 768fe99600
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
vim.cmd.colorscheme("desert")
vim.cmd("hi Normal guibg=#181818")
vim.opt.number = true vim.opt.number = true
vim.opt.relativenumber = true vim.opt.relativenumber = true
vim.opt.swapfile = false vim.opt.swapfile = false

View File

@@ -21,10 +21,16 @@ config.window_padding = {
bottom = 0, bottom = 0,
} }
config.scrollback_lines = 1000
config.font = wezterm.font("ComicShannsMono Nerd Font") config.font = wezterm.font("ComicShannsMono Nerd Font")
config.font_size = 20.0 config.font_size = 20.0
config.front_end = "WebGpu" config.front_end = "WebGpu"
config.window_decorations = "RESIZE" config.window_decorations = "RESIZE"
config.colors = {
background = '181818'
}
return config return config