Create wezterm.lua
This commit is contained in:
parent
6010c32549
commit
c0e5d37db8
1 changed files with 41 additions and 0 deletions
41
.config/wezterm/wezterm.lua
Normal file
41
.config/wezterm/wezterm.lua
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
local wezterm = require 'wezterm'
|
||||||
|
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
config.audible_bell = 'Disabled'
|
||||||
|
|
||||||
|
config.color_scheme = 'tokyonight_storm'
|
||||||
|
|
||||||
|
config.font = wezterm.font('OperatorMono Nerd Font', { weight = 400 })
|
||||||
|
config.font_size = 20
|
||||||
|
config.font_rules = {
|
||||||
|
{
|
||||||
|
intensity = 'Bold',
|
||||||
|
italic = true,
|
||||||
|
font = wezterm.font('OperatorMono Nerd Font', { weight = 600, style = 'Italic' })
|
||||||
|
},
|
||||||
|
{
|
||||||
|
intensity = 'Bold',
|
||||||
|
italic = false,
|
||||||
|
font = wezterm.font('OperatorMono Nerd Font', { weight = 600 })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
|
||||||
|
config.line_height = 1.25
|
||||||
|
|
||||||
|
config.window_background_opacity = 0.95
|
||||||
|
config.window_decorations = "RESIZE"
|
||||||
|
config.window_padding = {
|
||||||
|
left = 8,
|
||||||
|
right = 8,
|
||||||
|
top = 8,
|
||||||
|
bottom = 8,
|
||||||
|
}
|
||||||
|
|
||||||
|
-- OS Specific
|
||||||
|
config.macos_window_background_blur = 32
|
||||||
|
|
||||||
|
|
||||||
|
return config
|
Loading…
Add table
Add a link
Reference in a new issue