This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/common/wezterm/wezterm.lua

84 lines
1.7 KiB
Lua
Raw Normal View History

2023-05-09 12:05:12 -05:00
local wezterm = require 'wezterm'
local catpuccin = require 'catpuccin'
local config = {}
if wezterm.config_builder then
config = wezterm.config_builder()
end
2023-05-09 13:35:49 -05:00
config.default_cursor_style = 'BlinkingBar'
2023-05-09 12:05:12 -05:00
catpuccin.apply_to_config(config)
2023-05-09 20:19:26 -05:00
config.font = wezterm.font_with_fallback{
{ family = 'IosevkaLyteTerm', weight = 'Regular', italic = false },
{ family = 'Symbols Nerd Font Mono', weight = 'Regular', italic = false },
'Noto Color Emoji',
}
2023-05-09 12:05:12 -05:00
config.font_size = 12.0
config.hide_tab_bar_if_only_one_tab = true
2023-05-09 13:52:59 -05:00
config.use_fancy_tab_bar = false
2023-05-09 13:35:49 -05:00
config.tab_bar_at_bottom = true
2023-05-09 12:05:12 -05:00
config.window_background_opacity = 1.0
2023-05-09 13:35:49 -05:00
config.color_scheme = "Catppuccin Mocha"
2023-05-09 20:19:26 -05:00
config.window_frame.font = config.font
2023-05-09 13:35:49 -05:00
config.window_frame.font_size = 12.0
config.inactive_pane_hsb = {
saturation = 0.8,
brightness = 0.7,
}
2023-05-09 12:05:12 -05:00
config.keys = {
{
key = 'j',
mods = 'CTRL',
action = wezterm.action.ActivatePaneDirection'Down'
},
{
key = 'h',
mods = 'CTRL',
action = wezterm.action.ActivatePaneDirection'Left'
},
{
key = 'l',
mods = 'CTRL',
action = wezterm.action.ActivatePaneDirection'Right'
},
{
key = 'k',
mods = 'CTRL',
action = wezterm.action.ActivatePaneDirection'Up'
},
{
key = 'j',
mods = 'CTRL|SHIFT',
action = wezterm.action.SplitVertical{domain='CurrentPaneDomain'}
},
{
key = 'l',
mods = 'CTRL|SHIFT',
action = wezterm.action.SplitHorizontal{domain='CurrentPaneDomain'}
},
2023-05-09 13:35:49 -05:00
{
key = 'l',
mods = 'CTRL|SHIFT|ALT',
action = wezterm.action.ShowDebugOverlay
},
2023-05-09 12:05:12 -05:00
}
2023-05-09 20:19:26 -05:00
-- config.default_gui_startup_args = { 'connect', 'unix' }
config.window_padding = {
top = '0.5cell',
bottom = '0.5cell',
left = '1cell',
right = '1cell',
}
2023-05-09 12:05:12 -05:00
return config