wezterm keys paste
This commit is contained in:
parent
67def1496e
commit
aa37daf57c
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
local wezterm = require 'wezterm'
|
||||
local act = wezterm.action
|
||||
|
||||
return {
|
||||
font = wezterm.font 'ZedMono Nerd Font',
|
||||
|
@ -11,7 +12,10 @@ return {
|
|||
-- the current cell background color, rather than replace it
|
||||
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,
|
||||
text_background_opacity = 0.3,
|
||||
color_scheme = 'Tokyo Night',
|
||||
|
|
Loading…
Reference in a new issue