mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
Add Wezterm config
This commit is contained in:
parent
f930a5e9ae
commit
14e69d362b
24
config/wezterm/wezterm.lua
Normal file
24
config/wezterm/wezterm.lua
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
local wezterm = require 'wezterm'
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
local act = wezterm.action
|
||||||
|
|
||||||
|
config.color_scheme = 'Afterglow'
|
||||||
|
config.font = wezterm.font 'Source Code Pro'
|
||||||
|
config.font_size = 14
|
||||||
|
|
||||||
|
config.use_fancy_tab_bar = false
|
||||||
|
|
||||||
|
config.window_padding = {
|
||||||
|
left = 0,
|
||||||
|
right = 0,
|
||||||
|
top = 0,
|
||||||
|
bottom = 0,
|
||||||
|
}
|
||||||
|
|
||||||
|
config.keys = {
|
||||||
|
{ key = "LeftArrow", mods = "CMD", action = act.ActivateTabRelative(-1) },
|
||||||
|
{ key = "RightArrow", mods = "CMD", action = act.ActivateTabRelative(1) }
|
||||||
|
}
|
||||||
|
|
||||||
|
return config
|
||||||
Loading…
Reference in New Issue
Block a user