19 lines
		
	
	
	
		
			454 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			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
 |