145 lines
3.6 KiB
Lua
145 lines
3.6 KiB
Lua
local wezterm = require("wezterm")
|
|
local config = {}
|
|
if wezterm.config_builder then
|
|
config = wezterm.config_builder()
|
|
end
|
|
|
|
-- Basic settings
|
|
config.automatically_reload_config = true
|
|
config.window_close_confirmation = "NeverPrompt"
|
|
config.adjust_window_size_when_changing_font_size = false
|
|
config.window_decorations = "RESIZE"
|
|
config.check_for_updates = false
|
|
config.use_fancy_tab_bar = false
|
|
config.tab_bar_at_bottom = false
|
|
config.enable_tab_bar = false
|
|
|
|
-- Font configuration
|
|
config.font_size = 15.5
|
|
config.font = wezterm.font("JetBrains Mono", { weight = "Regular" })
|
|
config.bold_brightens_ansi_colors = true
|
|
config.force_reverse_video_cursor = true
|
|
|
|
-- Kanagawa Wave color scheme
|
|
config.colors = {
|
|
foreground = "#dcd7ba",
|
|
background = "#1f1f28",
|
|
cursor_bg = "#c8c093",
|
|
cursor_fg = "#c8c093",
|
|
cursor_border = "#c8c093",
|
|
selection_fg = "#c8c093",
|
|
selection_bg = "#2d4f67",
|
|
scrollbar_thumb = "#16161d",
|
|
split = "#54546d", -- Lighter for better split visibility
|
|
|
|
ansi = {
|
|
"#090618", -- black
|
|
"#c34043", -- red
|
|
"#76946a", -- green
|
|
"#c0a36e", -- yellow
|
|
"#7e9cd8", -- blue
|
|
"#957fb8", -- magenta
|
|
"#6a9589", -- cyan
|
|
"#c8c093", -- white
|
|
},
|
|
brights = {
|
|
"#727169", -- bright black
|
|
"#e82424", -- bright red
|
|
"#98bb6c", -- bright green
|
|
"#e6c384", -- bright yellow
|
|
"#7fb4ca", -- bright blue
|
|
"#938aa9", -- bright magenta
|
|
"#7aa89f", -- bright cyan
|
|
"#dcd7ba", -- bright white
|
|
},
|
|
|
|
indexed = {
|
|
[16] = "#ffa066",
|
|
[17] = "#ff5d62",
|
|
},
|
|
}
|
|
|
|
-- Window padding
|
|
config.window_padding = {
|
|
left = 8,
|
|
right = 8,
|
|
top = 8,
|
|
bottom = 8,
|
|
}
|
|
|
|
-- Window transparency and blur
|
|
config.window_background_opacity = 0.85
|
|
config.macos_window_background_blur = 60
|
|
config.text_background_opacity = 0.85
|
|
|
|
-- Performance
|
|
config.scrollback_lines = 10000
|
|
config.enable_scroll_bar = false
|
|
|
|
-- Cursor
|
|
config.default_cursor_style = "BlinkingBar"
|
|
config.cursor_blink_rate = 500
|
|
config.cursor_blink_ease_in = "Constant"
|
|
config.cursor_blink_ease_out = "Constant"
|
|
|
|
-- Key bindings
|
|
config.keys = {
|
|
{ key = "Enter", mods = "CTRL", action = wezterm.action({ SendString = "\x1b[13;5u" }) },
|
|
{ key = "Enter", mods = "SHIFT", action = wezterm.action({ SendString = "\x1b[13;2u" }) },
|
|
-- Navigate splits
|
|
{ key = "h", mods = "CTRL|SHIFT", action = wezterm.action.ActivatePaneDirection("Left") },
|
|
{ key = "l", mods = "CTRL|SHIFT", action = wezterm.action.ActivatePaneDirection("Right") },
|
|
{ key = "k", mods = "CTRL|SHIFT", action = wezterm.action.ActivatePaneDirection("Up") },
|
|
{ key = "j", mods = "CTRL|SHIFT", action = wezterm.action.ActivatePaneDirection("Down") },
|
|
-- Split panes
|
|
{ key = "|", mods = "CTRL|SHIFT", action = wezterm.action.SplitHorizontal({ domain = "CurrentPaneDomain" }) },
|
|
{ key = "_", mods = "CTRL|SHIFT", action = wezterm.action.SplitVertical({ domain = "CurrentPaneDomain" }) },
|
|
-- Close pane
|
|
{ key = "w", mods = "CTRL|SHIFT", action = wezterm.action.CloseCurrentPane({ confirm = false }) },
|
|
-- Zoom pane
|
|
{ key = "z", mods = "CTRL|SHIFT", action = wezterm.action.TogglePaneZoomState },
|
|
{
|
|
key = "f",
|
|
mods = "SHIFT|CTRL",
|
|
action = wezterm.action.ToggleFullScreen,
|
|
},
|
|
}
|
|
|
|
-- Hyperlink rules
|
|
config.hyperlink_rules = {
|
|
{
|
|
regex = "\\((\\w+://\\S+)\\)",
|
|
format = "$1",
|
|
highlight = 1,
|
|
},
|
|
{
|
|
regex = "\\[(\\w+://\\S+)\\]",
|
|
format = "$1",
|
|
highlight = 1,
|
|
},
|
|
{
|
|
regex = "\\{(\\w+://\\S+)\\}",
|
|
format = "$1",
|
|
highlight = 1,
|
|
},
|
|
{
|
|
regex = "<(\\w+://\\S+)>",
|
|
format = "$1",
|
|
highlight = 1,
|
|
},
|
|
{
|
|
regex = "[^(]\\b(\\w+://\\S+[)/a-zA-Z0.9-]+)",
|
|
format = "$1",
|
|
highlight = 1,
|
|
},
|
|
{
|
|
regex = "\\b\\w+@[\\w-]+(\\.[\\w-]+)+\\b",
|
|
format = "mailto:$0",
|
|
},
|
|
}
|
|
|
|
-- Window size
|
|
config.initial_rows = 34
|
|
config.initial_cols = 135
|
|
|
|
return config
|