1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-19 08:45:36 +00:00
dotfiles/.wezterm.lua

15 lines
325 B
Lua

local wezterm = require 'wezterm'
local config = {}
config.keys = {
{
key = '[',
mods = 'SUPER',
action = wezterm.action.SplitHorizontal { domain = 'CurrentPaneDomain' },
},
}
config.color_scheme = "Catppuccin Mocha" -- or Macchiato, Frappe, Latte
config.font = wezterm.font 'JetBrains Mono'
return config