From 159346814bd18497daa38ce45b04a7d5d7b6b003 Mon Sep 17 00:00:00 2001 From: notohh Date: Thu, 1 Feb 2024 13:26:32 -0500 Subject: [PATCH] wezterm: use stylua --- home/wezterm/config.lua | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/home/wezterm/config.lua b/home/wezterm/config.lua index ceccae1..2f609b5 100644 --- a/home/wezterm/config.lua +++ b/home/wezterm/config.lua @@ -1,21 +1,21 @@ -local wezterm = require('wezterm') +local wezterm = require("wezterm") local config = { - front_end = "WebGpu", - webgpu_preferred_adapter = { - backend = "Vulkan", - device_type = "DiscreteGpu", - name = "NVIDIA GeForce GTX 1070 Ti" - }, - enable_wayland = false, - font = wezterm.font 'Monaspace Krypton', - font_size = 12.0, - window_background_opacity = 0.6, - text_background_opacity = 1.0, - enable_tab_bar = false, - color_scheme = 'tokyonight', - window_padding = {top = 20, bottom = 20, left = 20, right = 20} + front_end = "WebGpu", + webgpu_preferred_adapter = { + backend = "Vulkan", + device_type = "DiscreteGpu", + name = "NVIDIA GeForce GTX 1070 Ti", + }, + enable_wayland = false, + font = wezterm.font("Monaspace Krypton"), + font_size = 12.0, + window_background_opacity = 0.6, + text_background_opacity = 1.0, + enable_tab_bar = false, + color_scheme = "tokyonight", + window_padding = { top = 20, bottom = 20, left = 20, right = 20 }, } return config