19 lines
466 B
Lua
19 lines
466 B
Lua
local wezterm = require 'wezterm'
|
|
local config = {}
|
|
|
|
config.color_scheme = 'OceanicNext (base16)'
|
|
-- config.font = wezterm.font 'FiraCode Nerd Font Mono'
|
|
|
|
config.font = wezterm.font_with_fallback {
|
|
"FiraCode Nerd Font Mono",
|
|
{ family = "Noto Color Emoji", assume_emoji_presentation = true },
|
|
}
|
|
|
|
config.font_size = 14
|
|
config.enable_tab_bar = false
|
|
|
|
-- Wayland-specific settings
|
|
config.enable_wayland = true
|
|
config.window_decorations = "NONE"
|
|
|
|
return config
|