dotfiles/wezterm.lua
2025-06-10 21:17:28 +02:00

19 lines
454 B
Lua

local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.default_prog = { '/usr/bin/tmux' }
config.color_scheme = 'Kanagawa (Gogh)'
config.enable_tab_bar = false
config.skip_close_confirmation_for_processes_named = {}
config.colors = {
cursor_bg = "#FFFF00"
}
config.mouse_bindings = {
{
event = { Up = { streak = 1, button = 'Left' } },
mods = 'CTRL',
action = wezterm.action.OpenLinkAtMouseCursor,
},
}
return config