diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..0e1630d --- /dev/null +++ b/.config/wezterm/wezterm.lua @@ -0,0 +1,13 @@ +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