mirror of
https://gitlab.com/mlunax/dotfiles.git
synced 2025-04-12 05:40:17 +00:00
16 lines
358 B
Lua
16 lines
358 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'
|
|
config.audible_bell = "Disabled"
|
|
return config
|