updated wezterm lua for windows
This commit is contained in:
24
home_root/.wezterm-windows.lua
Normal file
24
home_root/.wezterm-windows.lua
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
-- Pull in wezterm API
|
||||||
|
local wezterm = require("wezterm")
|
||||||
|
|
||||||
|
-- This will hold the configuration
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
config.font = wezterm.font("VictorMono Nerd Font")
|
||||||
|
config.font_size = 13
|
||||||
|
config.colors = {}
|
||||||
|
|
||||||
|
config.window_background_opacity = .85
|
||||||
|
config.macos_window_background_blur = 40
|
||||||
|
config.win32_system_backdrop = "Acrylic"
|
||||||
|
|
||||||
|
-- Add configration here
|
||||||
|
|
||||||
|
config.enable_tab_bar = true
|
||||||
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
config.use_fancy_tab_bar = true
|
||||||
|
config.window_decorations = "RESIZE"
|
||||||
|
|
||||||
|
config.default_prog = { 'pwsh' }
|
||||||
|
|
||||||
|
return config
|
||||||
Reference in New Issue
Block a user