2024-07-07 13:45:37 +04:00
|
|
|
-- Pull in the wezterm API
|
|
|
|
local wezterm = require("wezterm")
|
|
|
|
|
|
|
|
-- This will hold the configuration.
|
2024-07-07 22:50:01 +04:00
|
|
|
local config = wezterm.config_builder()
|
2024-07-07 13:45:37 +04:00
|
|
|
|
|
|
|
-- This is where you actually apply your config choices
|
|
|
|
config.enable_tab_bar = false
|
|
|
|
|
2024-07-07 22:50:01 +04:00
|
|
|
config.color_scheme = "Tartan (terminal.sexy)"
|
2024-07-07 14:11:54 +04:00
|
|
|
|
2024-07-07 13:45:37 +04:00
|
|
|
config.window_frame = {
|
|
|
|
|
|
|
|
font = wezterm.font({ family = "JetBrainsMono NF" }),
|
|
|
|
font_size = 12.0,
|
|
|
|
}
|
|
|
|
|
|
|
|
config.window_padding = {
|
|
|
|
left = 20,
|
|
|
|
right = 20,
|
|
|
|
top = 20,
|
|
|
|
bottom = 20,
|
|
|
|
}
|
|
|
|
|
|
|
|
-- and finally, return the configuration to wezterm
|
|
|
|
return config
|