From 14e8b6a8fdcc1064cb462339bd55cbc02b204588 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 2 Jan 2024 00:08:45 -0500 Subject: [PATCH] wezterm: mini refactor --- home/wezterm/config.lua | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/home/wezterm/config.lua b/home/wezterm/config.lua index 568de54..0b62a54 100644 --- a/home/wezterm/config.lua +++ b/home/wezterm/config.lua @@ -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