First few new slackware configs

This commit is contained in:
Ian Keane 2026-07-30 04:40:03 -04:00
parent 2f46871e56
commit 585cc29048
9 changed files with 215 additions and 9 deletions

View file

@ -2,8 +2,18 @@ local wezterm = require 'wezterm'
local config = {}
config.color_scheme = 'OceanicNext (base16)'
config.font = wezterm.font 'FiraCode Nerd Font Mono'
config.font_size = 12
-- 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