wezterm: mini refactor
All checks were successful
flake check / check (push) Successful in 11m0s
fmt check / check (push) Successful in 1m1s
All checks were successful
flake check / check (push) Successful in 11m0s
fmt check / check (push) Successful in 1m1s
This commit is contained in:
parent
95d3f9be93
commit
14e8b6a8fd
1 changed files with 11 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
local wezterm = require 'wezterm'
|
||||
local wezterm = require('wezterm')
|
||||
|
||||
local config = {
|
||||
|
||||
return {
|
||||
front_end = "WebGpu",
|
||||
webgpu_preferred_adapter = {
|
||||
backend = "Vulkan",
|
||||
|
@ -14,6 +15,12 @@ return {
|
|||
text_background_opacity = 1.0,
|
||||
enable_tab_bar = false,
|
||||
color_scheme = 'tokyonight',
|
||||
|
||||
window_padding = { top = 20, bottom = 20, left = 20, right = 20 }
|
||||
window_padding = {
|
||||
top = 20,
|
||||
bottom = 20,
|
||||
left = 20,
|
||||
right = 20
|
||||
}
|
||||
}
|
||||
|
||||
return config
|
||||
|
|
Loading…
Reference in a new issue