21 lines
551 B
Lua
21 lines
551 B
Lua
|
|
-- Pull in the wezterm API
|
||
|
|
local wezterm = require 'wezterm'
|
||
|
|
|
||
|
|
-- This will hold the configuration.
|
||
|
|
local config = wezterm.config_builder()
|
||
|
|
|
||
|
|
config.enable_tab_bar= false
|
||
|
|
config.window_background_opacity = 0.8
|
||
|
|
|
||
|
|
-- For example, changing the initial geometry for new windows:
|
||
|
|
config.initial_cols = 40
|
||
|
|
config.initial_rows = 18
|
||
|
|
config.color_scheme_dirs = { '~/.config/iTerm2-Color-Schemes' }
|
||
|
|
|
||
|
|
-- or, changing the font size and color scheme.
|
||
|
|
config.font_size = 10
|
||
|
|
config.color_scheme = 'Ollie'
|
||
|
|
|
||
|
|
-- Finally, return the configuration to wezterm:
|
||
|
|
return config
|