dotfiles/home/apps/wezterm/wezterm.lua

34 lines
898 B
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",
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
c.harfbuzz_features = { "calt=1", "ss01=1" }
c.command_palette_font_size = c.font_size * 1.1
c.window_frame = {
font = wezterm.font("IBM Plex Sans"),
}
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-16 01:26:47 +02:00
require("catppuccin.plugin").apply_to_config(c, { sync = true })
2023-03-05 05:40:35 +01:00
return c