26 lines
484 B
Django/Jinja
26 lines
484 B
Django/Jinja
-- {{ ansible_managed }}
|
|
|
|
local wezterm = require 'wezterm';
|
|
|
|
return {
|
|
font = wezterm.font(
|
|
'MonaspiceNe Nerd Font Mono',
|
|
{ weight = 'Regular', stretch = 'Normal', style = 'Normal' }
|
|
),
|
|
|
|
font_size = {{ wezterm_font_size }},
|
|
freetype_load_target = 'Light',
|
|
freetype_render_target = 'HorizontalLcd',
|
|
harfbuzz_features = {
|
|
'calt', -- texture healing
|
|
'ss01',
|
|
'ss02',
|
|
'ss03',
|
|
'ss04',
|
|
'ss05',
|
|
'ss06',
|
|
'ss07',
|
|
'ss08',
|
|
'liga'
|
|
}
|
|
}
|