Created
November 13, 2023 07:40
-
-
Save webdevsuperfast/12eadf108065d79c8897b74363410291 to your computer and use it in GitHub Desktop.
WezTerm configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Pull in the wezterm API | |
local wezterm = require 'wezterm' | |
-- This table will hold the configuration. | |
local config = {} | |
-- In newer versions of wezterm, use the config_builder which will | |
-- help provide clearer error messages | |
if wezterm.config_builder then | |
config = wezterm.config_builder() | |
end | |
-- This is where you actually apply your config choices | |
-- For example, changing the color scheme: | |
config.color_scheme = 'Cobalt2' | |
-- Fonts | |
config.font = wezterm.font 'Maple Mono' | |
config.font_size = 18.0 | |
-- Window Columns & Rows | |
config.initial_cols = 130 | |
config.initial_rows = 35 | |
-- and finally, return the configuration to wezterm | |
return config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment