1
0
Fork 0

wezterm keys paste

This commit is contained in:
zymon 2024-08-28 00:07:55 +02:00
parent 67def1496e
commit aa37daf57c

View file

@ -1,4 +1,5 @@
local wezterm = require 'wezterm' local wezterm = require 'wezterm'
local act = wezterm.action
return { return {
font = wezterm.font 'ZedMono Nerd Font', font = wezterm.font 'ZedMono Nerd Font',
@ -11,7 +12,10 @@ return {
-- the current cell background color, rather than replace it -- the current cell background color, rather than replace it
selection_bg = 'rgba(50% 50% 50% 50%)', selection_bg = 'rgba(50% 50% 50% 50%)',
}, },
keys = {
{ key = 'v', mods = 'ALT', action = act.PasteFrom 'Clipboard' },
{ key = 'v', mods = 'ALT', action = act.PasteFrom 'PrimarySelection' },
},
window_background_opacity = 0.7, window_background_opacity = 0.7,
text_background_opacity = 0.3, text_background_opacity = 0.3,
color_scheme = 'Tokyo Night', color_scheme = 'Tokyo Night',