13 lines
358 B
Cheetah
13 lines
358 B
Cheetah
|
-- 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
|
||
|
config.color_scheme = "GruvboxDarkHard"
|
||
|
config.font = wezterm.font("BrutalistMono Nerd Font")
|
||
|
|
||
|
-- and finally, return the configuration to wezterm
|
||
|
return config
|