mirror of
https://github.com/Cian-H/dotfiles.git
synced 2026-02-01 23:02:27 +00:00
13 lines
332 B
Lua
13 lines
332 B
Lua
local wezterm = require("wezterm")
|
|
local config = wezterm.config_builder()
|
|
|
|
config.enable_wayland = true
|
|
config.default_prog = { "nu" }
|
|
config.color_scheme = "Tokyo Night"
|
|
config.enable_kitty_keyboard = true
|
|
config.font = wezterm.font("MonaspiceNeNerdFontMono")
|
|
config.font_size = 16
|
|
config.use_fancy_tab_bar = false
|
|
|
|
return config
|