dotfiles_wezterm/text.lua

11 lines
255 B
Lua
Raw Permalink Normal View History

2025-02-04 05:15:47 +00:00
-- 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