Last active
November 7, 2024 10:53
-
-
Save remlapmot/cb8d7605d284caf29857f252acebe3a0 to your computer and use it in GitHub Desktop.
WezTerm config file. Place in ~
This file contains 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 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.font_size = 13 | |
config.font = wezterm.font 'IBM Plex Mono' | |
config.color_scheme = 'Rosé Pine Moon (Gogh)' | |
config.initial_rows = 30 | |
config.initial_cols = 110 | |
config.window_close_confirmation = 'NeverPrompt' | |
-- 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
https://wezfurlong.org/wezterm/config/lua/config/index.html