mirror of
				https://github.com/materusPL/nixos-config
				synced 2025-11-04 06:20:27 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			242 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			242 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
local wezterm_config = {};
 | 
						|
 | 
						|
function materus_wezterm_config()
 | 
						|
    local wezterm = require 'wezterm';
 | 
						|
    local cfg = wezterm.config_builder();
 | 
						|
    cfg.hide_tab_bar_if_only_one_tab = true;
 | 
						|
    cfg.enable_scroll_bar = true;
 | 
						|
    return cfg;
 | 
						|
end
 |