20 lines
438 B
Lua
20 lines
438 B
Lua
-- Pull in the wezterm API
|
|
local wezterm = require 'wezterm'
|
|
|
|
-- This will hold the configuration.
|
|
local config = wezterm.config_builder()
|
|
|
|
-- This is where you actually apply your config choices
|
|
|
|
-- For example, changing the color scheme:
|
|
config.color_scheme = 'GruvboxDarkHard'
|
|
|
|
config.font = wezterm.font 'mononoki'
|
|
config.font_size = 20
|
|
|
|
|
|
config.front_end = "WebGpu"
|
|
|
|
-- and finally, return the configuration to wezterm
|
|
return config
|