mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
17 lines
389 B
Lua
17 lines
389 B
Lua
-- vim: foldmethod=marker foldmarker=#region,#endregion
|
|
-- $DOTFILES/tools/wezterm/wezterm.lua
|
|
-- Date: 2024-12-22
|
|
-- Author: js0ny
|
|
|
|
local wezterm = require("wezterm")
|
|
local color = require("color")
|
|
|
|
local config = wezterm.config_builder()
|
|
|
|
require("tab")(config)
|
|
require("appearance")(config)
|
|
require("keymaps")(config)
|
|
require("launcher")(config)
|
|
require("misc")(config)
|
|
|
|
return config
|