25 lines
674 B
Lua
25 lines
674 B
Lua
-- Pull in the wezterm API
|
|
local wezterm = require 'wezterm'
|
|
local config = wezterm.config_builder()
|
|
|
|
-- This is where you actually apply your config choices
|
|
config.color_scheme = 'Kimber (base16)'
|
|
config.color_scheme = 'Color Star (terminal.sexy)'
|
|
config.color_scheme = 'Catch Me If You Can (terminal.sexy)'
|
|
config.color_scheme = 'Catppuccin Mocha (Gogh)'
|
|
config.color_scheme = 'Panda (Gogh)'
|
|
config.color_scheme = 'zenbones_dark'
|
|
config.color_scheme = 'Wombat'
|
|
|
|
config.window_frame = {
|
|
font_size = 10
|
|
}
|
|
|
|
config.font_size = 9.5
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
|
|
config.font = wezterm.font 'Fira Code'
|
|
config.font = wezterm.font 'Lilex Nerd Font'
|
|
|
|
return config
|