dotfiles/home/apps/wezterm/config.lua

65 lines
1.3 KiB
Lua
Raw Normal View History

local wezterm = require("wezterm")
local c = {}
if wezterm.config_builder then
c = wezterm.config_builder()
c:set_strict_mode(true)
end
2023-03-05 05:40:35 +01:00
require("fonts").apply(c)
require("keys").apply(c)
c.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
2023-03-05 05:40:35 +01:00
-- set up terminfo on nix
c.set_environment_variables = {
TERMINFO_DIRS = wezterm.home_dir .. "/.nix-profile/share/terminfo",
}
-- window
c.window_decorations = "RESIZE"
c.window_padding = {
left = 0,
right = 0,
top = 0,
bottom = 0,
}
-- dim unfocused panes
c.inactive_pane_hsb = {
saturation = 1.0,
brightness = 0.6,
}
2023-03-05 05:40:35 +01:00
-- etc.
c.adjust_window_size_when_changing_font_size = false
c.audible_bell = "Disabled"
c.clean_exit_codes = { 130 }
c.default_cursor_style = "BlinkingBar"
c.launch_menu = {
{ label = "Music player", args = { "ncmpcpp" } },
}
c.command_palette_font_size = 16.0
c.window_background_opacity = 0.9
c.window_frame = {
font_size = 18.0,
}
2023-03-21 05:44:39 +01:00
wezterm.plugin
.require("https://github.com/catppuccin/wezterm")
.apply_to_config(c, {
flavor = "mocha",
sync = wezterm.target_triple:find("darwin") ~= nil,
2023-03-21 05:44:39 +01:00
sync_flavors = { light = "latte", dark = "mocha" },
})
2023-03-20 23:30:58 +01:00
wezterm.plugin
.require("https://github.com/nekowinston/wezterm-bar")
.apply_to_config(c, {
indicator = {
2023-05-07 09:35:05 +02:00
leader = { off = "", on = "" },
2023-03-20 23:30:58 +01:00
},
})
2023-03-05 05:40:35 +01:00
return c