From f04e0c75e905eec0c77a326700669e99c8918b81 Mon Sep 17 00:00:00 2001 From: Daniel Lundin Date: Tue, 19 Apr 2022 11:04:09 +0200 Subject: [PATCH] wezterm: font config + new clipoard action --- .config/wezterm/wezterm.lua | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index d1a6548..6f18a80 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -95,8 +95,9 @@ return { { italic = true, intensity = "Normal", + -- font = font_with_fallback("Iosevka Aile", {weight="Regular", italic=true}) - font = font_with_fallback("Iosevka Term Curly Slab", {weight="Regular", italic=true}) + font = font_with_fallback("Iosevka Term Curly Slab", {weight="Light", italic=true}) }, { italic = true, @@ -118,12 +119,12 @@ return { font_size = 12.5, line_height = 1.1, - initial_cols = 110, - initial_rows = 49, + initial_cols = 119, + initial_rows = 47, window_padding = { left = 0, right = 0, - top = 21, + top = 0, bottom = 0, }, @@ -153,7 +154,7 @@ return { leader = { key="o", mods="CTRL|SHIFT", timeout_milliseconds=1000 }, keys = { - {key="c", mods="ALT|SHIFT", action="Copy"}, + {key="c", mods="ALT|SHIFT", action=wezterm.action{CopyTo="ClipboardAndPrimarySelection"}}, {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"}},