dotfiles/home/apps/wezterm/wezterm.lua

65 lines
1.8 KiB
Lua
Raw Normal View History

local wezterm = require("wezterm")
2023-07-13 08:45:39 +02:00
local c = wezterm.config_builder()
local utils = require("config.utils")
require("config.keys").apply(c)
2023-11-02 17:10:58 +01:00
c.font = wezterm.font_with_fallback({
2024-02-18 13:51:38 +01:00
"Berkeley Mono",
2024-05-30 20:02:02 +02:00
-- "Cascadia Code",
2023-11-02 17:10:58 +01:00
"Symbols Nerd Font",
})
c.front_end = "WebGpu"
2023-11-02 17:10:58 +01:00
c.font_size = 13
2024-05-30 20:02:02 +02:00
-- c.harfbuzz_features = { "calt=1", "ss01=1" }
2023-11-02 17:10:58 +01:00
c.command_palette_font_size = c.font_size * 1.1
c.window_frame = {
font = wezterm.font("IBM Plex Sans"),
}
2024-05-30 20:02:02 +02:00
-- c.window_background_opacity = 0.85
-- c.macos_window_background_blur = 20
2024-03-11 13:10:03 +01:00
c.window_decorations = "RESIZE|INTEGRATED_BUTTONS"
c.window_padding = { left = 0, right = 0, top = 50, bottom = 0 }
2023-03-05 05:40:35 +01:00
c.adjust_window_size_when_changing_font_size = false
c.audible_bell = "Disabled"
c.default_cursor_style = "BlinkingBar"
2023-11-02 17:10:58 +01:00
c.inactive_pane_hsb = { brightness = 0.90 }
-- some annoying bug is causing crashes on sway
if utils.is_darwin() then
require("bar.plugin").apply_to_config(c)
end
2024-05-30 20:02:02 +02:00
c.use_fancy_tab_bar = false
c.tab_bar_at_bottom = true
require("milspec.plugin").apply_to_config(c, { sync = true })
-- folke/zen-mode.nvim
wezterm.on("user-var-changed", function(window, pane, name, value)
local overrides = window:get_config_overrides() or {}
if name == "ZEN_MODE" then
local incremental = value:find("+")
local number_value = tonumber(value)
if incremental ~= nil then
while number_value > 0 do
window:perform_action(wezterm.action.IncreaseFontSize, pane)
number_value = number_value - 1
end
overrides.enable_tab_bar = false
elseif number_value < 0 then
window:perform_action(wezterm.action.ResetFontSize, pane)
overrides.font_size = nil
overrides.enable_tab_bar = true
else
overrides.font_size = number_value
overrides.enable_tab_bar = false
end
end
window:set_config_overrides(overrides)
end)
2023-03-05 05:40:35 +01:00
return c