-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_wezterm.lua
31 lines (26 loc) · 911 Bytes
/
dot_wezterm.lua
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.font = wezterm.font("FiraCode Nerd Font")
config.enable_tab_bar = false
-- Yabai doesn't recognize the window if decorations are NONE..
-- RESIZE does work instead
config.window_decorations = "RESIZE"
config.color_scheme = "AdventureTime"
config.window_padding = {
-- temporarily set top padding so integrated buttons don't integere with content
top = 48,
bottom = 0,
}
config.keys = {
{ key = "t", mods = "SUPER", action = wezterm.action.DisableDefaultAssignment },
}
-- and finally, return the configuration to wezterm
return config