dotfiles_wezterm/text.lua
2025-02-04 10:45:47 +05:30

11 lines
255 B
Lua

-- Settings related to text and cursor
local wezterm = require 'wezterm'
local function text_settings(config)
config.font = wezterm.font 'IosevkaTermSlab Nerd Font Mono'
config.font_size = 11.0
config.cursor_blink_rate = 800
end
return text_settings