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

add wezterm config

This commit is contained in:
Luna 2023-05-08 02:27:18 +02:00
parent 212f33cd58
commit aaa2d66ee2

13
homedir/.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