dotfiles/data/wezterm/wezterm.lua

72 lines
1.3 KiB
Lua
Raw Normal View History

2023-03-01 03:10:30 +00:00
local wezterm = require("wezterm")
local act = wezterm.action
2023-03-01 03:10:30 +00:00
return {
font = wezterm.font({
family = "Iosevka Term SS08",
}),
2023-10-06 08:03:33 +00:00
font_size = 16.0,
2023-03-15 06:16:48 +00:00
line_height = 1.2,
use_cap_height_to_scale_fallback_fonts = true,
2023-07-06 03:05:01 +00:00
2023-08-06 07:26:21 +00:00
color_scheme = "Catppuccin Mocha",
2023-07-06 03:05:01 +00:00
2023-03-01 05:31:19 +00:00
keys = {
{
key = "LeftArrow",
mods = "CTRL|SHIFT",
action = act.ActivateTabRelative(-1),
2023-03-01 05:31:19 +00:00
},
{
key = "RightArrow",
mods = "CTRL|SHIFT",
action = act.ActivateTabRelative(1),
},
-- Sync with Zellij
{
key = "n",
mods = "ALT",
action = act.SplitHorizontal({ domain = "CurrentPaneDomain" }),
},
{
key = "m",
mods = "ALT",
action = act.SplitVertical({ domain = "CurrentPaneDomain" }),
},
{
key = "p",
mods = "ALT",
2023-08-19 12:00:29 +00:00
action = act.ActivatePaneDirection("Next"),
},
{
key = "o",
mods = "ALT",
action = act.SpawnCommandInNewTab({}),
},
{
key = "[",
mods = "ALT",
action = act.ActivateTabRelative(-1),
},
{
key = "]",
mods = "ALT",
action = act.ActivateTabRelative(1),
2023-03-01 05:31:19 +00:00
},
},
2023-07-06 03:05:01 +00:00
use_fancy_tab_bar = false,
2023-03-01 03:10:30 +00:00
hide_tab_bar_if_only_one_tab = true,
tab_bar_at_bottom = true,
tab_and_split_indices_are_zero_based = true,
2023-08-19 12:00:29 +00:00
tab_max_width = 24,
2023-07-06 03:05:01 +00:00
native_macos_fullscreen_mode = true,
2023-07-06 03:05:01 +00:00
default_cursor_style = "SteadyBar",
2023-03-01 10:36:31 +00:00
audible_bell = "Disabled",
2023-08-19 12:03:35 +00:00
-- Remove in next version
front_end = "WebGpu",
2023-03-01 03:10:30 +00:00
}