Disable transparency, disable wezterm audible bell

This commit is contained in:
Evie Litherland-Smith 2023-03-01 21:12:25 +00:00
parent c221b44295
commit fdb3fd73e1
2 changed files with 4 additions and 2 deletions

View file

@ -1,7 +1,7 @@
return { return {
flavour = "macchiato", flavour = "macchiato",
term_colors = true, term_colors = true,
transparent_background = true, -- transparent_background = true,
integrations = { integrations = {
dashboard = true, dashboard = true,
gitsigns = true, gitsigns = true,

View file

@ -7,12 +7,14 @@ require("status").setup(scheme)
require "navigator" require "navigator"
return { return {
audible_bell = "Disabled",
font_size = 14, font_size = 14,
window_background_opacity = 0.85, -- window_background_opacity = 0.85,
color_scheme = scheme_name, color_scheme = scheme_name,
use_fancy_tab_bar = false, use_fancy_tab_bar = false,
tab_max_width = 79, tab_max_width = 79,
tab_bar_style = { new_tab = tab_bar_style.new_tab(scheme), new_tab_hover = tab_bar_style.new_tab_hover(scheme) }, tab_bar_style = { new_tab = tab_bar_style.new_tab(scheme), new_tab_hover = tab_bar_style.new_tab_hover(scheme) },
hide_tab_bar_if_only_one_tab = true,
disable_default_key_bindings = true, disable_default_key_bindings = true,
keys = require "keys", keys = require "keys",
key_tables = require "key_tables", key_tables = require "key_tables",