This commit is contained in:
♥ Minnie ♥ 2024-12-22 09:57:17 +08:00
parent 93f49e3227
commit 7edae4612e
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,5 +1,5 @@
-- Pull in the wezterm API
local wezterm = require 'wezterm'
local wezterm = require("wezterm")
local act = wezterm.action
-- This table will hold the configuration.
@ -26,27 +26,23 @@ function tab_title(tab_info)
return tab_info.active_pane.title
end
wezterm.on(
'format-tab-title',
function(tab, tabs, panes, config, hover, max_width)
wezterm.on("format-tab-title", function(tab, tabs, panes, config, hover, max_width)
local title = tab_title(tab)
return { { Text = ' ' .. title .. '' }, }
end
)
return { { Text = " " .. title .. "" } }
end)
-- Do not check for or show window with update information
config.check_for_updates = false
config.show_update_window = false
--| Font Configuration
config.font = wezterm.font 'Fisa Code'
config.font = wezterm.font("Fisa Code")
config.font_size = 10.0
--| Color scheme
config.color_scheme = 'gruvbox_material_dark_hard'
config.color_scheme = "gruvbox_material_dark_hard"
--| Cursor style
config.default_cursor_style = 'SteadyBar'
config.default_cursor_style = "SteadyBar"
--| Padding
config.window_padding = {
@ -75,44 +71,43 @@ config.colors = {
tab_bar = {
--| Tab Bar Colors
background = '#282828',
background = "#282828",
--| Tab Colors
active_tab = { bg_color = '#282828', fg_color = '#7daea3', intensity = 'Normal', italic = false, },
inactive_tab = { bg_color = '#282828', fg_color = '#a89984', intensity = 'Normal', italic = false, },
inactive_tab_hover = { bg_color = '#282828', fg_color = '#a89984', intensity = 'Normal', italic = false, },
new_tab = { bg_color = '#282828', fg_color = '#a89984', intensity = 'Normal', italic = false, },
new_tab_hover = { bg_color = '#282828', fg_color = '#a89984', intensity = 'Normal', italic = false, },
}
active_tab = { bg_color = "#282828", fg_color = "#7daea3", intensity = "Normal", italic = false },
inactive_tab = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false },
inactive_tab_hover = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false },
new_tab = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false },
new_tab_hover = { bg_color = "#282828", fg_color = "#a89984", intensity = "Normal", italic = false },
},
}
--| Key Assignments
config.disable_default_key_bindings = true
config.keys = {
--| Spawn Tab
{ key = 'n', mods = 'ALT', action = act.SpawnTab 'CurrentPaneDomain', },
{ key = "n", mods = "ALT", action = act.SpawnTab("CurrentPaneDomain") },
--| Tab Navigation
{ key = 'LeftArrow', mods = 'ALT', action = act.ActivateTabRelative(-1) },
{ key = 'RightArrow', mods = 'ALT', action = act.ActivateTabRelative(1) },
{ key = "LeftArrow", mods = "ALT", action = act.ActivateTabRelative(-1) },
{ key = "RightArrow", mods = "ALT", action = act.ActivateTabRelative(1) },
--| Split Panes
{ key = 'v', mods = 'ALT', action = act.SplitVertical { domain = 'CurrentPaneDomain' }, },
{ key = 's', mods = 'ALT', action = act.SplitHorizontal { domain = 'CurrentPaneDomain' }, },
{ key = "v", mods = "ALT", action = act.SplitVertical({ domain = "CurrentPaneDomain" }) },
{ key = "s", mods = "ALT", action = act.SplitHorizontal({ domain = "CurrentPaneDomain" }) },
--| Adjust Pane Size
{ key = 'PageDown', mods = 'ALT', action = act.AdjustPaneSize { 'Down', 5 } },
{ key = 'PageUp', mods = 'ALT', action = act.AdjustPaneSize { 'Up', 5 } },
{ key = "PageDown", mods = "ALT", action = act.AdjustPaneSize({ "Down", 5 }) },
{ key = "PageUp", mods = "ALT", action = act.AdjustPaneSize({ "Up", 5 }) },
--| Pane Navigation
{ key = 'DownArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Next', },
{ key = 'UpArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Prev', },
{ key = "DownArrow", mods = "ALT", action = act.ActivatePaneDirection("Next") },
{ key = "UpArrow", mods = "ALT", action = act.ActivatePaneDirection("Prev") },
--| Close Pane
{ key = 'Escape', mods = "ALT", action = act.CloseCurrentPane { confirm = false }, },
{ key = "Escape", mods = "ALT", action = act.CloseCurrentPane({ confirm = false }) },
--| Copy Mode / Clipboard
{ key = 'X', mods = 'CTRL', action = act.ActivateCopyMode, },
{ key = 'V', mods = 'CTRL', action = act.PasteFrom 'Clipboard', },
{ key = "X", mods = "CTRL", action = act.ActivateCopyMode },
{ key = "V", mods = "CTRL", action = act.PasteFrom("Clipboard") },
--| This lets us unify delete word across programs
{ key = 'Backspace', mods = 'CTRL', action = act.SendKey {key = 'w', mods = 'CTRL'} },
{ key = "Backspace", mods = "CTRL", action = act.SendKey({ key = "w", mods = "CTRL" }) },
}
return config