use more modern wezterm config
This commit is contained in:
parent
de346f7f45
commit
cc1317d43b
1 changed files with 27 additions and 25 deletions
|
@ -2,30 +2,32 @@ local wezterm = require("wezterm")
|
||||||
local catppuccin = require("colors/catppuccin").setup({})
|
local catppuccin = require("colors/catppuccin").setup({})
|
||||||
local keys = require("keys")
|
local keys = require("keys")
|
||||||
|
|
||||||
-- -- add wezterm to title for wm usage
|
|
||||||
-- wezterm.on("format-window-title", function()
|
|
||||||
-- return " - Wezterm"
|
|
||||||
-- end)
|
|
||||||
--
|
|
||||||
local padding = 10
|
local padding = 10
|
||||||
return {
|
local config = {}
|
||||||
check_for_updates = false,
|
|
||||||
-- -- window_background_opacity = 0.9,
|
if wezterm.config_builder then
|
||||||
window_padding = {
|
config = wezterm.config_builder()
|
||||||
left = padding,
|
end
|
||||||
right = padding,
|
|
||||||
top = padding,
|
-- window_background_opacity = 0.9
|
||||||
bottom = padding,
|
config.check_for_updates = false
|
||||||
},
|
config.window_padding = {
|
||||||
font = wezterm.font("MonoLisa Nerd Font"),
|
left = padding,
|
||||||
adjust_window_size_when_changing_font_size = false,
|
right = padding,
|
||||||
initial_cols = 80,
|
top = padding,
|
||||||
colors = catppuccin,
|
bottom = padding,
|
||||||
use_fancy_tab_bar = false,
|
|
||||||
hide_tab_bar_if_only_one_tab = true,
|
|
||||||
tab_bar_at_bottom = true,
|
|
||||||
-- disable_default_key_bindings = true,
|
|
||||||
bold_brightens_ansi_colors = true,
|
|
||||||
default_gui_startup_args = { "start", "--always-new-process" },
|
|
||||||
keys = keys.keys,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
config.hide_mouse_cursor_when_typing = false
|
||||||
|
config.font = wezterm.font("MonoLisa Nerd Font")
|
||||||
|
config.adjust_window_size_when_changing_font_size = false
|
||||||
|
config.initial_cols = 80
|
||||||
|
config.colors = catppuccin
|
||||||
|
config.use_fancy_tab_bar = false
|
||||||
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
config.tab_bar_at_bottom = true
|
||||||
|
--config.disable_default_key_bindings = true
|
||||||
|
config.bold_brightens_ansi_colors = true
|
||||||
|
config.default_gui_startup_args = { "start", "--always-new-process" }
|
||||||
|
config.keys = keys.keys
|
||||||
|
return config
|
||||||
|
|
Loading…
Reference in a new issue