123 lines
3.4 KiB
Lua
123 lines
3.4 KiB
Lua
local wezterm = require("wezterm")
|
|
local config = wezterm.config_builder()
|
|
|
|
config.enable_wayland = true
|
|
|
|
-- unset start dir
|
|
config.default_cwd = nil
|
|
|
|
-- Font config
|
|
config.font = wezterm.font_with_fallback({
|
|
{ family = "Fira Code", weight = "Regular" },
|
|
"Symbols Nerd Font",
|
|
})
|
|
config.font_size = 11.0
|
|
config.line_height = 1.0
|
|
|
|
config.window_padding = {
|
|
left = 0,
|
|
right = 0,
|
|
top = 0,
|
|
bottom = 0,
|
|
}
|
|
|
|
-- Window appearance
|
|
config.window_background_opacity = 0.92
|
|
-- config.enable_tab_bar = true
|
|
config.use_fancy_tab_bar = false
|
|
config.tab_bar_at_bottom = false
|
|
|
|
config.warn_about_missing_glyphs = false
|
|
|
|
-- Cursor
|
|
config.default_cursor_style = "BlinkingBlock"
|
|
config.cursor_blink_rate = 600
|
|
|
|
-- Bell
|
|
config.audible_bell = "Disabled"
|
|
|
|
-- Key bindings
|
|
config.keys = {
|
|
{ key = "C", mods = "CTRL|SHIFT", action = wezterm.action.SendKey({ key = "c", mods = "CTRL" }) },
|
|
{ key = "c", mods = "CTRL", action = wezterm.action.CopyTo("Clipboard") },
|
|
{ key = "v", mods = "CTRL", action = wezterm.action.PasteFrom("Clipboard") },
|
|
{ key = "U", mods = "CTRL|SHIFT", action = wezterm.action.ActivateCommandPalette },
|
|
{ key = "LeftArrow", mods = "CTRL", action = wezterm.action.ActivateTabRelative(-1) },
|
|
{ key = "RightArrow", mods = "CTRL", action = wezterm.action.ActivateTabRelative(1) },
|
|
{ key = "t", mods = "ALT", action = wezterm.action.SpawnTab("CurrentPaneDomain") },
|
|
{ key = "q", mods = "ALT", action = wezterm.action.CloseCurrentPane({ confirm = false }) },
|
|
{ key = "U", mods = "CTRL|SHIFT", action = wezterm.action.AttachDomain("unix") },
|
|
|
|
-- splits
|
|
{
|
|
key = "h",
|
|
mods = "ALT",
|
|
action = wezterm.action.SplitHorizontal({ domain = "CurrentPaneDomain" }),
|
|
},
|
|
{
|
|
key = "5",
|
|
mods = "ALT",
|
|
action = wezterm.action.SplitVertical({ domain = "CurrentPaneDomain" }),
|
|
},
|
|
{ key = "LeftArrow", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Left") },
|
|
{ key = "RightArrow", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Right") },
|
|
{ key = "UpArrow", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Up") },
|
|
{ key = "DownArrow", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Down") },
|
|
}
|
|
-- Theme
|
|
config.color_scheme = "Catppuccin Mocha"
|
|
|
|
local tabline = wezterm.plugin.require("https://github.com/michaelbrusegard/tabline.wez")
|
|
tabline.setup({
|
|
options = {
|
|
icons_enabled = true,
|
|
theme = "Catppuccin Mocha",
|
|
tabs_enabled = true,
|
|
theme_overrides = {},
|
|
section_separators = {
|
|
left = wezterm.nerdfonts.pl_left_hard_divider,
|
|
right = wezterm.nerdfonts.pl_right_hard_divider,
|
|
},
|
|
component_separators = {
|
|
left = wezterm.nerdfonts.pl_left_soft_divider,
|
|
right = wezterm.nerdfonts.pl_right_soft_divider,
|
|
},
|
|
tab_separators = {
|
|
left = wezterm.nerdfonts.pl_left_hard_divider,
|
|
right = wezterm.nerdfonts.pl_right_hard_divider,
|
|
},
|
|
},
|
|
sections = {
|
|
tabline_a = { nil },
|
|
tabline_b = { nil },
|
|
tabline_c = { nil },
|
|
tab_active = {
|
|
"index",
|
|
{ "parent", padding = 0 },
|
|
"/",
|
|
{ "cwd", padding = { left = 0, right = 1 } },
|
|
{ "zoomed", padding = 0 },
|
|
},
|
|
tab_inactive = { "index", { "process", padding = { left = 0, right = 1 } } },
|
|
tabline_x = { nil },
|
|
tabline_y = { nil },
|
|
tabline_z = { nil },
|
|
},
|
|
extensions = {},
|
|
})
|
|
|
|
config.unix_domains = {
|
|
{
|
|
name = "unix",
|
|
},
|
|
}
|
|
|
|
local mux = wezterm.mux
|
|
|
|
wezterm.on("gui-startup", function(cmd)
|
|
local tab, pane, window = mux.spawn_window(cmd or {})
|
|
window:gui_window():maximize()
|
|
end)
|
|
|
|
return config
|