nixos/home/wezterm/wezterm.lua
Evie Litherland-Smith b102f9e209 Major cleanup for files
Reduce complexity and in flake.nix and be more efficient in re-using
things

Removed some reduandant files in home/ and tidied up the structure
somewhat

Moved things from desktop, gui, etc... to top level

Changed env to shell, indiv shell expressions import relevant others
2023-07-16 17:35:36 +01:00

33 lines
935 B
Lua

-- Pull in the wezterm API
local wezterm = require "wezterm"
-- This table will hold the configuration.
local config = {}
-- In newer versions of wezterm, use the config_builder which will
-- help provide clearer error messages
if wezterm.config_builder then config = wezterm.config_builder() end
-- This is where you actually apply your config choices
config.set_environment_variables = {
TERMINFO_DIRS = "/home/user/.nix-profile/share/terminfo",
WSLENV = "TERMINFO_DIRS",
}
-- config.term = "wezterm"
config.audible_bell = "Disabled"
config.font_size = 14
config.window_background_opacity = 0.80
config.macos_window_background_blur = 20
config.color_scheme = "tokyonight_night"
config.hide_tab_bar_if_only_one_tab = true
config.hide_mouse_cursor_when_typing = true
config.window_padding = {
left = 10,
right = 10,
top = 10,
bottom = 10,
}
-- and finally, return the configuration to wezterm
return config