dotfiles/.wezterm.lua
2024-11-12 11:29:49 -05:00

25 lines
674 B
Lua

-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices
-- For example, changing the color scheme:
config.font = wezterm.font("JetBrainsMono Nerd Font", {weight="Regular", stretch="Normal", style="Normal"})
config.color_scheme = 'tokyonight'
config.hide_tab_bar_if_only_one_tab = true
config.window_background_opacity = .9
config.use_fancy_tab_bar = false
config.tab_bar_at_bottom = true
config.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
-- and finally, return the configuration to wezterm
return config