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

113 lines
2.2 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-24 15:35:28 -05:00
local hostname = io.popen("/bin/hostname"):read("*a"):gsub("%s", "")
local font_spec = { family = 'IosevkaLyteTerm', weight = 'Regular', italic = false }
local font_size = 12.0
2023-05-09 13:35:49 -05:00
2023-05-24 15:35:28 -05:00
if hostname == "laptop" then
font_size = 13
end
2023-05-09 12:05:12 -05:00
2023-05-24 15:35:28 -05:00
local font = wezterm.font_with_fallback{
font_spec,
2023-05-09 20:19:26 -05:00
{ family = 'Symbols Nerd Font Mono', weight = 'Regular', italic = false },
'Noto Color Emoji',
}
2023-05-24 15:35:28 -05:00
if hostname == "laptop" then
config.font_rules = {
-- no italics
{
font = font
},
}
end
config.default_cursor_style = 'BlinkingBar'
catpuccin.apply_to_config(config)
config.font = font
config.font_size = font_size
2023-05-09 12:05:12 -05:00
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-24 15:35:28 -05:00
config.window_frame.font_size = font_size
2023-05-09 13:35:49 -05:00
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'
},
2023-05-24 15:27:31 -05:00
{
key = 'Insert',
mods = 'SHIFT',
action = wezterm.action.PasteFrom'Clipboard'
},
{
key = 'v',
mods = 'CTRL|SHIFT',
action = wezterm.action.PasteFrom'PrimarySelection'
},
2023-05-09 12:05:12 -05:00
{
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