Skip to content

Instantly share code, notes, and snippets.

@Sama-004
Created May 13, 2024 19:18
Show Gist options
  • Save Sama-004/e6d51c1c81cfc607ddb3e3c2c38d9d53 to your computer and use it in GitHub Desktop.
Save Sama-004/e6d51c1c81cfc607ddb3e3c2c38d9d53 to your computer and use it in GitHub Desktop.
local wezterm = require("wezterm")
local act = wezterm.action
return {
keys = {
{ key = "v", mods = "CTRL", action = act.PasteFrom("Clipboard") },
--{ key = "V", mods = "CTRL", action = act.PasteFrom("PrimarySelection") },
},
color_scheme = "Catppuccin Mocha", -- or Macchiato, Frappe, Latte
enable_tab_bar = false,
font_size = 17,
window_padding = {
left = 5,
right = 5,
top = 5,
bottom = 5,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment