dotfiles/dot_config/wezterm/wezterm.lua

13 lines
445 B
Lua

-- The only required line is this one.
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.color_scheme = 'Liquid Carbon (Gogh)'
config.hide_tab_bar_if_only_one_tab = true
config.window_background_opacity = 0.85
-- and finally, return the configuration to wezterm
return config