nixos/os/dev/wezterm.lua
deva 61f78061a3
nix magic plus restructuring
(the magic is os/util/user.nix)
2024-07-02 19:43:25 -04:00

26 lines
No EOL
529 B
Lua

local wezterm = require 'wezterm'
local config = wezterm.config_builder()
config.color_scheme = 'Oxocarbon Dark (Gogh)'
config.use_fancy_tab_bar = false
config.window_decorations = "RESIZE"
config.hide_tab_bar_if_only_one_tab = true
config.font = wezterm.font "Cascadia Code NF"
config.set_environment_variables = {
TERM = "xterm-256color",
EDITOR = "nvim",
VISUAL = "code --wait",
}
config.window_padding = {
left = 7,
right = 7,
top = 0,
bottom = 0,
}
config.default_cursor_style = 'SteadyBar'
return config