nixos/user/dev/wezterm.lua
2024-06-28 23:40:00 -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