dotfiles/home/apps/wezterm/wezterm.lua

38 lines
931 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({
"Cascadia Code",
"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"),
font_size = c.font_size,
}
2023-03-05 05:40:35 +01:00
c.window_decorations = "RESIZE"
2023-11-02 17:10:58 +01:00
c.window_padding = { left = 0, right = 0, top = 20, 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
require("catppuccin.plugin").apply_to_config(c, {
sync = false,
flavor = "frappe",
})
2023-03-05 05:40:35 +01:00
return c