14 lines
311 B
Lua
14 lines
311 B
Lua
local wezterm = require 'wezterm'
|
|
local config = wezterm.config_builder()
|
|
|
|
config.font = wezterm.font('Monaco Nerd Font Mono', { weight = 'Medium' })
|
|
config.font_size = 12
|
|
config.freetype_load_target = 'Normal'
|
|
|
|
config.color_scheme = 'catppuccin-mocha'
|
|
config.colors = {
|
|
background = 'black'
|
|
}
|
|
|
|
return config
|