dotfiles/home/apps/wezterm/wezterm.lua

24 lines
765 B
Lua

local wezterm = require("wezterm")
local c = wezterm.config_builder()
require("keys").apply(c)
c.font = wezterm.font_with_fallback({ "Berkeley Mono", "Symbols Nerd Font" })
c.window_decorations = "RESIZE"
c.window_padding = { left = 0, right = 0, top = 0, bottom = 0 }
c.inactive_pane_hsb = { saturation = 1.0, brightness = 0.8 }
c.adjust_window_size_when_changing_font_size = false
c.audible_bell = "Disabled"
c.clean_exit_codes = { 130 }
c.default_cursor_style = "BlinkingBar"
c.command_palette_font_size = 13.0
c.window_frame = { font_size = 13.0 }
wezterm.plugin
.require("https://github.com/catppuccin/wezterm")
.apply_to_config(c, { sync = true })
wezterm.plugin
.require("https://github.com/nekowinston/wezterm-bar")
.apply_to_config(c)
return c