mirror of
https://github.com/eoli3n/dotfiles
synced 2024-11-22 15:01:59 +01:00
wezterm no bold
This commit is contained in:
parent
0420123c94
commit
a93facb262
@ -1,11 +1,23 @@
|
|||||||
local wezterm = require 'wezterm'
|
local wezterm = require 'wezterm'
|
||||||
local config = {}
|
local config = {}
|
||||||
|
|
||||||
config.font =
|
config.font = wezterm.font {
|
||||||
wezterm.font('JetBrains Mono', { weight = 'Light'})
|
family = 'jetbrains mono light'
|
||||||
|
}
|
||||||
|
config.font_rules = {
|
||||||
|
{
|
||||||
|
intensity = 'Bold',
|
||||||
|
italic = false,
|
||||||
|
font = wezterm.font {
|
||||||
|
family = 'jetbrains mono light',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
config.font_size = 10.0
|
config.font_size = 10.0
|
||||||
config.hide_tab_bar_if_only_one_tab = true
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
config.default_cursor_style = 'BlinkingBar'
|
config.default_cursor_style = 'BlinkingBar'
|
||||||
|
config.front_end = "WebGpu"
|
||||||
|
|
||||||
config.colors = {
|
config.colors = {
|
||||||
foreground = '{{ color7 }}',
|
foreground = '{{ color7 }}',
|
||||||
@ -38,7 +50,6 @@ config.colors = {
|
|||||||
|
|
||||||
config.window_background_opacity = 0.9
|
config.window_background_opacity = 0.9
|
||||||
config.text_background_opacity = 1
|
config.text_background_opacity = 1
|
||||||
config.window_decorations = "NONE"
|
|
||||||
|
|
||||||
config.hyperlink_rules = wezterm.default_hyperlink_rules()
|
config.hyperlink_rules = wezterm.default_hyperlink_rules()
|
||||||
return config
|
return config
|
||||||
|
Loading…
Reference in New Issue
Block a user