2021-04-01 16:02:19 +02:00
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
|
2021-04-01 19:31:44 +02:00
|
|
|
local editPanes = {};
|
|
|
|
local editMarker = ":nvim";
|
|
|
|
|
|
|
|
-- Window titles are a perfectly fine IPC mechanism 😁
|
|
|
|
|
|
|
|
wezterm.on("update-right-status", function(window, pane)
|
|
|
|
local title = pane:get_title();
|
|
|
|
local pid = pane:pane_id();
|
|
|
|
if editPanes[pid] ~= title and title:sub(-#editMarker) == editMarker then
|
|
|
|
editPanes[pid] = title;
|
|
|
|
window:perform_action(wezterm.action{ActivateTab=0}, pane);
|
|
|
|
end
|
|
|
|
end);
|
|
|
|
|
2021-04-01 16:02:19 +02:00
|
|
|
function font_with_fallback(name, params)
|
2021-04-02 14:47:31 +02:00
|
|
|
local names = {name, "Noto Color Emoji", "Iosevka Nerd Font Mono"}
|
2021-04-01 16:02:19 +02:00
|
|
|
return wezterm.font_with_fallback(names, params)
|
|
|
|
end
|
|
|
|
|
2021-04-03 10:19:45 +02:00
|
|
|
|
|
|
|
local themeShelmanDark = {
|
|
|
|
colors = {
|
|
|
|
foreground = "#ded9ce",
|
2021-04-03 10:38:18 +02:00
|
|
|
background = "#171a23",
|
2021-04-03 10:19:45 +02:00
|
|
|
cursor_bg = "#FB8C00",
|
|
|
|
cursor_border = "#FB8C00",
|
|
|
|
split = "#444444",
|
|
|
|
ansi = { "#000000", "#ff605a", "#b1e869", "#ead89c", "#5da9f6", "#e86aff", "#82fff6", "#ded9ce" },
|
|
|
|
brights = { "#313131", "#f58b7f", "#dcf88f", "#eee5b2", "#a5c7ff", "#ddaaff", "#b6fff9", "#fefffe" },
|
|
|
|
tab_bar = {
|
|
|
|
background = "#000000",
|
2021-04-03 10:38:18 +02:00
|
|
|
active_tab = { bg_color = "#171a23", fg_color = "#c0b070", intensity = "Normal", },
|
2021-04-03 10:19:45 +02:00
|
|
|
inactive_tab = { bg_color = "#000000", fg_color = "#c0c0c0", intensity = "Half", },
|
|
|
|
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
tab_bar_style = {
|
2021-04-03 10:38:18 +02:00
|
|
|
active_tab_left = wezterm.format({ {Background={Color="#171a23"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
|
|
|
active_tab_right = wezterm.format({ {Background={Color="#171a23"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
|
|
|
inactive_tab_left = wezterm.format({ {Background={Color="#000000"}}, {Foreground={Color="#171a23"}}, {Text=" "} }),
|
|
|
|
inactive_tab_right = wezterm.format({ {Background={Color="#000000"}}, {Foreground={Color="#171a23"}}, {Text="▕"} }),
|
|
|
|
inactive_tab_hover_left = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
|
|
|
inactive_tab_hover_right = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
local themeShelmanLight = {
|
|
|
|
colors = {
|
|
|
|
foreground = "#000000",
|
|
|
|
background = "#f7f7f7",
|
|
|
|
cursor_bg = "#FB8C00",
|
|
|
|
cursor_border = "#FB8C00",
|
|
|
|
split = "#444444",
|
|
|
|
ansi = { "#000000", "#ff605a", "#b1e869", "#ead89c", "#5da9f6", "#e86aff", "#82fff6", "#ded9ce" },
|
|
|
|
brights = { "#313131", "#f58b7f", "#dcf88f", "#eee5b2", "#a5c7ff", "#ddaaff", "#b6fff9", "#fefffe" },
|
|
|
|
tab_bar = {
|
|
|
|
background = "#444444",
|
|
|
|
active_tab = { bg_color = "#f7f7f7", fg_color = "#000000", intensity = "Normal", },
|
|
|
|
inactive_tab = { bg_color = "#777777", fg_color = "#000000", intensity = "Half", },
|
|
|
|
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
tab_bar_style = {
|
|
|
|
active_tab_left = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
|
|
|
active_tab_right = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
|
|
|
inactive_tab_left = wezterm.format({ {Background={Color="#777777"}}, {Foreground={Color="#f7f7f7"}}, {Text=" "} }),
|
|
|
|
inactive_tab_right = wezterm.format({ {Background={Color="#777777"}}, {Foreground={Color="#333333"}}, {Text="▕"} }),
|
2021-04-03 10:19:45 +02:00
|
|
|
inactive_tab_hover_left = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
|
|
|
inactive_tab_hover_right = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
local theme = themeShelmanDark;
|
|
|
|
|
2021-04-01 16:02:19 +02:00
|
|
|
return {
|
2021-04-03 10:19:45 +02:00
|
|
|
colors = theme.colors,
|
|
|
|
tab_bar_style = theme.tab_bar_style,
|
2021-04-01 19:31:44 +02:00
|
|
|
-- automatically_reload_config = false,
|
2021-04-01 16:02:19 +02:00
|
|
|
font = font_with_fallback("Iosevka Term SS09 Light"),
|
|
|
|
font_rules = {
|
|
|
|
{
|
|
|
|
italic = false,
|
|
|
|
intensity = "Half",
|
|
|
|
font = font_with_fallback("Iosevka Term SS09 Thin")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
italic = true,
|
|
|
|
intensity = "Normal",
|
|
|
|
font = font_with_fallback("Iosevka Term SS09 Light", {italic=true})
|
|
|
|
},
|
|
|
|
{
|
|
|
|
italic = true,
|
|
|
|
intensity = "Bold",
|
|
|
|
font = font_with_fallback("Iosevka Term Curly Slab XLt", {italic=true})
|
|
|
|
},
|
|
|
|
{
|
|
|
|
intensity = "Bold",
|
|
|
|
font = font_with_fallback("Iosevka Term SS09 Semibold")
|
|
|
|
},
|
|
|
|
},
|
|
|
|
freetype_load_target = "HorizontalLcd",
|
|
|
|
|
|
|
|
font_size = 12.0,
|
|
|
|
line_height = 1.0,
|
|
|
|
|
|
|
|
initial_cols = 120,
|
|
|
|
initial_rows = 40,
|
|
|
|
window_padding = {
|
|
|
|
left = 0,
|
|
|
|
right = 0,
|
|
|
|
top = 0,
|
|
|
|
bottom = 0,
|
|
|
|
},
|
|
|
|
|
2021-04-02 17:35:50 +02:00
|
|
|
enable_tab_bar = true,
|
2021-04-02 17:31:47 +02:00
|
|
|
show_tab_index_in_tab_bar = true,
|
2021-04-01 16:02:19 +02:00
|
|
|
enable_scroll_bar = false,
|
|
|
|
window_decorations = "NONE",
|
|
|
|
scrollback_lines = 5000,
|
2021-04-01 19:31:44 +02:00
|
|
|
alternate_buffer_wheel_scroll_speed = 2,
|
2021-04-01 16:02:19 +02:00
|
|
|
check_for_updates = false,
|
2021-04-01 19:31:44 +02:00
|
|
|
status_update_interval = 100,
|
|
|
|
|
2021-04-02 14:47:31 +02:00
|
|
|
launch_menu = {
|
|
|
|
{
|
|
|
|
label = "dln-dev",
|
|
|
|
args = {"ssh", "dln-dev"},
|
|
|
|
},
|
|
|
|
},
|
2021-04-01 16:02:19 +02:00
|
|
|
|
2021-04-02 14:47:31 +02:00
|
|
|
leader = { key="o", mods="CTRL", timeout_milliseconds=1000 },
|
2021-04-01 16:02:19 +02:00
|
|
|
keys = {
|
2021-04-01 19:31:44 +02:00
|
|
|
|
|
|
|
{key="c", mods="ALT|SHIFT", action="Copy"},
|
|
|
|
{key="v", mods="ALT|SHIFT", action="Paste"},
|
|
|
|
{key="n", mods="LEADER", action=wezterm.action{SpawnTab="CurrentPaneDomain"}},
|
|
|
|
{key="c", mods="LEADER", action=wezterm.action{SpawnTab="CurrentPaneDomain"}},
|
|
|
|
{key="k", mods="LEADER", action=wezterm.action{CloseCurrentTab={confirm=true}}},
|
2021-04-02 14:47:31 +02:00
|
|
|
{key="l", mods="LEADER", action="ShowLauncher"},
|
2021-04-01 19:31:44 +02:00
|
|
|
|
|
|
|
{key="LeftArrow", mods="CTRL", action=wezterm.action{ActivateTabRelative=-1}},
|
|
|
|
{key="RightArrow", mods="CTRL", action=wezterm.action{ActivateTabRelative=1}},
|
2021-04-02 17:35:50 +02:00
|
|
|
{key="RightArrow", mods="CTRL|SHIFT", action=wezterm.action{SpawnTab="CurrentPaneDomain"}},
|
2021-04-01 19:31:44 +02:00
|
|
|
|
|
|
|
{key="1", mods="ALT", action=wezterm.action{ActivateTab=0}},
|
|
|
|
{key="2", mods="ALT", action=wezterm.action{ActivateTab=1}},
|
|
|
|
{key="3", mods="ALT", action=wezterm.action{ActivateTab=2}},
|
|
|
|
{key="4", mods="ALT", action=wezterm.action{ActivateTab=3}},
|
|
|
|
{key="5", mods="ALT", action=wezterm.action{ActivateTab=4}},
|
|
|
|
{key="6", mods="ALT", action=wezterm.action{ActivateTab=5}},
|
|
|
|
{key="7", mods="ALT", action=wezterm.action{ActivateTab=6}},
|
|
|
|
{key="8", mods="ALT", action=wezterm.action{ActivateTab=7}},
|
|
|
|
{key="9", mods="ALT", action=wezterm.action{ActivateTab=8}},
|
|
|
|
{key="0", mods="ALT", action=wezterm.action{ActivateTab=9}},
|
2021-04-01 16:02:19 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
|
2021-04-04 09:50:44 +02:00
|
|
|
ssh_domains = {
|
|
|
|
{
|
|
|
|
name = "dln-dev",
|
|
|
|
remote_address = "dln-dev",
|
|
|
|
username = "dln",
|
|
|
|
}
|
|
|
|
},
|
2021-04-02 17:31:47 +02:00
|
|
|
|
2021-04-01 16:02:19 +02:00
|
|
|
}
|