-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwezterm.lua
More file actions
31 lines (26 loc) · 721 Bytes
/
Copy pathwezterm.lua
File metadata and controls
31 lines (26 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This table will hold the configuration.
local config = {}
-- In newer versions of wezterm, use the config_builder which will
-- help provide clearer error messages
if wezterm.config_builder then
config = wezterm.config_builder()
end
-- This is where you actually apply your config choices
config.color_scheme = 'Catppuccin Mocha'
config.enable_tab_bar = false
config.window_padding = {
left = '2px',
right = '2px',
top = '1px',
bottom = '1px',
}
config.font =
wezterm.font("SauceCodePro Nerd Font Mono", {
weight="Regular",
stretch="Normal",
style="Normal"
})
-- and finally, return the configuration to wezterm
return config