Skip to content

Instantly share code, notes, and snippets.

@remlapmot
Last active November 7, 2024 10:53
Show Gist options
  • Save remlapmot/cb8d7605d284caf29857f252acebe3a0 to your computer and use it in GitHub Desktop.
Save remlapmot/cb8d7605d284caf29857f252acebe3a0 to your computer and use it in GitHub Desktop.
WezTerm config file. Place in ~
-- 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
@remlapmot
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment