fix(wezterm)!: set front_end to WebGpu

This commit is contained in:
reo101 2024-09-15 17:10:39 +03:00
parent 5868b5885f
commit 8abd11e0a7
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,9 @@
(wezterm.config_builder) (wezterm.config_builder)
{})) {}))
;; https://github.com/NixOS/nixpkgs/issues/336069
(set config.front_end "WebGpu")
;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;
;;; Font Options ;;; ;;; Font Options ;;;
;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;

View file

@ -2,6 +2,9 @@ local M = {}
local wezterm = require("wezterm") local wezterm = require("wezterm")
-- https://github.com/NixOS/nixpkgs/issues/336069
M.front_end = "WebGpu"
---------- ----------
-- Font -- -- Font --
---------- ----------