feat(wezterm): use catppuccin plugin!

This commit is contained in:
winston 2023-03-21 05:44:39 +01:00
parent f067d3fca9
commit 611a32154a
Signed by: winston
GPG key ID: 3786770EDBC2B481

View file

@ -8,7 +8,6 @@ end
require("fonts").apply(c)
require("keys").apply(c)
require("theme").apply(c)
-- set up terminfo on nix
c.set_environment_variables = {
@ -41,21 +40,25 @@ c.window_frame = {
font_size = 18.0,
}
wezterm.plugin
.require("https://github.com/catppuccin/wezterm")
.apply_to_config(c, {
flavor = "mocha",
sync = true,
sync_flavors = { light = "latte", dark = "mocha" },
overrides = {
mocha = {
base = "#000000",
mantle = "#010101",
crust = "#020202",
},
},
})
wezterm.plugin
.require("https://github.com/nekowinston/wezterm-bar")
.apply_to_config(c, {
indicator = {
leader = {
off = "",
on = "",
},
mode = {
names = {
copy_mode = "V",
resize_mode = "R",
search_mode = "S",
},
},
leader = { off = "", on = "" },
},
})