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:
parent
212f33cd58
commit
aaa2d66ee2
1 changed files with 13 additions and 0 deletions
13
homedir/.wezterm.lua
Normal file
13
homedir/.wezterm.lua
Normal 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
|
Loading…
Add table
Reference in a new issue