Files
dotfiles/dot_config/wezterm/wezterm.lua

12 lines
300 B
Lua

local wezterm = require("wezterm")
local config = wezterm.config_builder()
config.enable_wayland = false
config.default_prog = { "nu" }
config.color_scheme = "Tokyo Night"
config.enable_kitty_keyboard = true
config.font = wezterm.font("MonaspiceNeNerdFontMono")
config.font_size = 16
return config