1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-18 16:26:50 +00:00

add wezterm config file

This commit is contained in:
Luna 2023-06-01 09:48:55 +02:00
parent bc3f9d248e
commit 6ea9f23e22

13
.wezterm.lua Normal file
View file

@ -0,0 +1,13 @@
local wezterm = require 'wezterm'
local config = {}
config.keys = {
{
key = '[',
mods = 'SUPER',
action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' },
},
}
config.font = wezterm.font 'JetBrains Mono'
return config