27 lines
610 B
Lua
27 lines
610 B
Lua
local wezterm = require 'wezterm'
|
|
local config = wezterm.config_builder()
|
|
|
|
-- Font
|
|
config.font = wezterm.font '0xProto Nerd Font'
|
|
config.font_size = 13
|
|
|
|
|
|
-- Appearance
|
|
config.color_scheme = 'Tokyo Night'
|
|
config.enable_tab_bar = false
|
|
config.window_padding = {
|
|
left = 4, right = 4, top = 4, bottom = 4,
|
|
}
|
|
|
|
-- IME (set to whatever you use)
|
|
config.use_ime = true
|
|
-- config.xim_im_name = 'fcitx' -- uncomment and adjust if needed
|
|
|
|
-- Scrollback
|
|
config.scrollback_lines = 10000
|
|
|
|
-- OSC 52 — on by default, but explicit is fine
|
|
config.enable_kitty_keyboard = false -- avoid surprising keybinds
|
|
|
|
return config
|